mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
26 lines
No EOL
780 B
PHP
26 lines
No EOL
780 B
PHP
Registration confirmed {{ config('app.name') }}
|
|
|
|
Hello,
|
|
|
|
@if (config('instance.confirmed_registration_text'))
|
|
{{ strip_tags(parsedown(config('instance.confirmed_registration_text'))) }}
|
|
@else
|
|
Your SIP account has been successfully created.
|
|
You can now configure this account on any SIP-compatible application using the following parameters:
|
|
@endif
|
|
|
|
SIP address: sip:{{ $account->identifier }}
|
|
Username: {{ $account->username }}
|
|
Domain: {{ $account->domain }}
|
|
|
|
@if (!empty(config('app.proxy_registrar_address')))
|
|
Proxy/registrar address: sip:{{ config('app.proxy_registrar_address') }}
|
|
@endif
|
|
@if (!empty(config('app.transport_protocol_text')))
|
|
Transport: {{ config('app.transport_protocol_text') }}
|
|
@endif
|
|
|
|
Regards,
|
|
{{ config('mail.signature') }}
|
|
|
|
strip_tags |