mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Add a everyone_is_admin config parameter for tests purpose Fix DIGEST with liblinphone (split "email" in username + realm) and other adjustments
24 lines
824 B
PHP
24 lines
824 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->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>
|