mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-17 19:58:27 +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
548 B
PHP
19 lines
548 B
PHP
<html>
|
|
<head>
|
|
<title>Register on {{ config('app.name') }}</title>
|
|
</head>
|
|
<body>
|
|
<p>Hello,</p>
|
|
<p>
|
|
You just created an account on {{ config('app.name') }} using your email account.<br />
|
|
Please follow the unique link bellow to set up your password and finish the registration process.
|
|
</p>
|
|
<p>
|
|
<a href="{{ $link }}">{{ $link }}</a>
|
|
</p>
|
|
<p>
|
|
Regards,<br />
|
|
{{ config('mail.signature') }}
|
|
</p>
|
|
</body>
|
|
</html>
|