1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/app/views/emails/confirm_html.blade.php

32 lines
822 B
PHP
Raw Normal View History

2014-11-25 18:35:29 +01:00
<html>
2015-03-10 13:39:25 +01:00
<body>
<script type="application/ld+json">
2014-11-25 18:35:29 +01:00
{
2015-03-10 13:39:25 +01:00
"@context": "http://schema.org",
"@type": "EmailMessage",
"action": {
"@type": "ConfirmAction",
"name": "Approve Expense",
2014-11-25 18:35:29 +01:00
"handler": {
"@type": "HttpActionHandler",
2015-03-10 13:39:25 +01:00
"url": "https://myexpenses.com/approve?expenseId=abc123"
2014-11-25 18:35:29 +01:00
}
2015-03-10 13:39:25 +01:00
},
"description": "Approval request for John's $10.13 expense for office supplies"
}
</script>
2014-01-16 22:12:46 +01:00
2015-03-10 13:39:25 +01:00
<h1>{{ trans('texts.confirmation_header') }}</h1>
2014-01-16 22:12:46 +01:00
2015-03-10 13:39:25 +01:00
<p>
{{ $invitationMessage . trans('texts.confirmation_message') }}<br/>
<a href='{{{ URL::to("user/confirm/{$user->confirmation_code}") }}}'>
{{{ URL::to("user/confirm/{$user->confirmation_code}") }}}
</a>
<p/>
2014-11-25 18:35:29 +01:00
2015-03-10 13:39:25 +01:00
{{ trans('texts.email_signature') }}<br/>
{{ trans('texts.email_from') }}
2014-11-25 18:35:29 +01:00
2015-03-10 13:39:25 +01:00
</body>
2014-11-25 18:35:29 +01:00
</html>