invoiceninja/app/views/emails/confirm_html.blade.php
2014-11-25 19:35:29 +02:00

33 lines
No EOL
859 B
PHP
Executable file

<html>
<body>
<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}") }}}"
}
}
}
</script>
<h1>{{ trans('texts.confirmation_header') }}</h1>
<p>
{{ $invitationMessage . trans('texts.confirmation_message') }}
<a href='{{{ URL::to("user/confirm/{$user->confirmation_code}") }}}'>
{{{ URL::to("user/confirm/{$user->confirmation_code}") }}}
</a>
<p/>
{{ trans('texts.email_signature') }}<br/>
{{ trans('texts.email_from') }}
</body>
</html>