mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Minor tweaks
This commit is contained in:
parent
ed3d779bf1
commit
228f772f02
@ -1,32 +1,33 @@
|
||||
<html>
|
||||
<body>
|
||||
<script type="application/ld+json">
|
||||
<body>
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "http://schema.org",
|
||||
"@type": "EmailMessage",
|
||||
"action": {
|
||||
"@type": "ConfirmAction",
|
||||
"name": "Approve Expense",
|
||||
"@context":"http://schema.org",
|
||||
"@type":"EmailMessage",
|
||||
"description":"Confirm your Invoice Ninja account",
|
||||
"action":
|
||||
{
|
||||
"@type":"ConfirmAction",
|
||||
"name":"Confirm Account",
|
||||
"handler": {
|
||||
"@type": "HttpActionHandler",
|
||||
"url": "https://myexpenses.com/approve?expenseId=abc123"
|
||||
"url": "{{{ URL::to("user/confirm/{$user->confirmation_code}") }}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": "Approval request for John's $10.13 expense for office supplies"
|
||||
}
|
||||
</script>
|
||||
}
|
||||
</script>
|
||||
|
||||
<h1>{{ trans('texts.confirmation_header') }}</h1>
|
||||
<h1>{{ trans('texts.confirmation_header') }}</h1>
|
||||
|
||||
<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/>
|
||||
<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/>
|
||||
|
||||
{{ trans('texts.email_signature') }}<br/>
|
||||
{{ trans('texts.email_from') }}
|
||||
{{ trans('texts.email_signature') }}<br/>
|
||||
{{ trans('texts.email_from') }}
|
||||
|
||||
</body>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user