mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 01:58:07 +00:00
24 lines
820 B
PHP
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>
|