mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-02-07 13:58:24 +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
28 lines
1 KiB
PHP
28 lines
1 KiB
PHP
<html>
|
|
<head>
|
|
<title>Registration confirmed {{ config('app.name') }}</title>
|
|
</head>
|
|
<body>
|
|
<p>Hello,</p>
|
|
<p>
|
|
Your SIP account has been successfully created using {{ config('app.name') }}.<br />
|
|
You can now configure this account on any SIP-compatible application using the following parameters:<br />
|
|
<br />
|
|
|
|
<b>SIP address:</b> sip:{{ $account->identifier }}<br />
|
|
<b>Username:</b> {{ $account->username }}<br />
|
|
<b>Domain:</b> {{ $account->domain }}<br />
|
|
<br />
|
|
@if (!empty(config('app.proxy_registrar_address')))
|
|
<b>Proxy/registrar address: </b> sip:{{ config('app.proxy_registrar_address') }}<br />
|
|
@endif
|
|
@if (!empty(config('app.transport_protocol')))
|
|
<b>Transport: </b> {{ config('app.transport_protocol') }} <br />
|
|
@endif
|
|
</p>
|
|
<p>
|
|
Regards,<br />
|
|
{{ config('mail.signature') }}
|
|
</p>
|
|
</body>
|
|
</html>
|