flexisip-account-manager/flexiapi/resources/views/mails/changing_email.blade.php
Timothée Jaussoin 8fd85c00d2 Complete the documentation regarding how DotEnv configuration is handled
Add a confirmation flow using a email when an account tries to change one
2020-09-14 16:41:47 +02:00

24 lines
820 B
PHP

<html>
<head>
<title>Changing your email address</title>
</head>
<body>
<p>Hello,</p>
<p>
You requested to change your email address from {{ $account->email }} to {{ $account->emailChanged->email }} on {{ config('app.name') }}.
</p>
<p>
To confirm this change please click on the following link:
<a href="{{ route('account.email.update', ['hash' => $account->emailChanged->hash]) }}">
{{ route('account.email.update', ['hash' => $account->emailChanged->hash]) }}
</a>.
</p>
<p>
If you are not at the origin of this change just ignore this message.
</p>
<p>
Regards,<br />
{{ config('mail.signature') }}
</p>
</body>
</html>