mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
25 lines
520 B
PHP
25 lines
520 B
PHP
@extends('emails.master_user')
|
|
|
|
@section('body')
|
|
<div>
|
|
{{ trans('texts.email_salutation', ['name' => $userName]) }}
|
|
</div>
|
|
|
|
<div>
|
|
{{ trans("texts.security_code_email_line1") }}
|
|
</div>
|
|
|
|
<div>
|
|
<center><h2>{{ $code }}</h2></center>
|
|
</div>
|
|
|
|
<div>
|
|
{{ trans("texts.security_code_email_line2") }}
|
|
</div>
|
|
|
|
<div>
|
|
{{ trans('texts.email_signature') }} <br/>
|
|
{{ trans('texts.email_from') }}
|
|
</div>
|
|
@stop
|