2015-03-16 22:45:25 +01:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
@if (!$invitationMessage)
|
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context":"http://schema.org",
|
|
|
|
"@type":"EmailMessage",
|
|
|
|
"description":"Confirm your Invoice Ninja account",
|
|
|
|
"action":
|
|
|
|
{
|
|
|
|
"@type":"ConfirmAction",
|
|
|
|
"name":"Confirm account",
|
|
|
|
"handler": {
|
|
|
|
"@type": "HttpActionHandler",
|
|
|
|
"url": "{{{ URL::to("user/confirm/{$user->confirmation_code}") }}}"
|
|
|
|
},
|
|
|
|
"publisher": {
|
|
|
|
"@type": "Organization",
|
|
|
|
"name": "Invoice Ninja",
|
|
|
|
"url": "{{{ NINJA_WEB_URL }}}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<h1>{{ trans('texts.confirmation_header') }}</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
{{ $invitationMessage . trans('texts.confirmation_message') }}<br/>
|
2015-04-05 21:15:37 +02:00
|
|
|
<a href='{{ URL::to("user/confirm/{$user->confirmation_code}") }}'>
|
|
|
|
{{ URL::to("user/confirm/{$user->confirmation_code}") }}
|
2015-03-16 22:45:25 +01:00
|
|
|
</a>
|
|
|
|
<p/>
|
|
|
|
|
|
|
|
{{ trans('texts.email_signature') }}<br/>
|
|
|
|
{{ trans('texts.email_from') }}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|