mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Send a confirmation email when the password is set for the first time Remove the API link from the menu and move it to the footer Allow different domains to be set in the POST /api/accounts endpoints + related tests Cleanup the API tests Update the dependencies
19 lines
No EOL
531 B
PHP
19 lines
No EOL
531 B
PHP
<html>
|
|
<head>
|
|
<title>Authenticate on {{ config('app.name') }}</title>
|
|
</head>
|
|
<body>
|
|
<p>Hello,</p>
|
|
<p>
|
|
You are trying to authenticate to {{ config('app.name') }} using your email account.<br />
|
|
Please follow the unique link bellow to finish the authentication process.
|
|
</p>
|
|
<p>
|
|
<a href="{{ $link }}">{{ $link }}</a>
|
|
</p>
|
|
<p>
|
|
Regards,<br />
|
|
{{ config('mail.signature') }}
|
|
</p>
|
|
</body>
|
|
</html> |