flexisip-account-manager/flexiapi/resources/views/mails/changing_email.blade.php
Timothée Jaussoin 8acd08607c - Fix an issue when the user set for the first time his email adress to his account (the old email was required)
- Fix an issue when a user want to do an email authentication on an account that is using the same email adress as another account
- Bump the package number
2021-05-04 11:27:21 +02:00

24 lines
797 B
PHP

<html>
<head>
<title>Changing your email address</title>
</head>
<body>
<p>Hello,</p>
<p>
You requested to change your email address to {{ $account->emailChanged->new_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>