
* New Test Notification Created Test Notification. Updated Vendor Mail message.blade files. Updated api settings controller to use Notification Façade. * Add show URL in Emails condition * New Welcome Notification
19 lines
565 B
PHP
19 lines
565 B
PHP
@component('mail::message')
|
|
{{ trans('mail.hello') }} {{ $first_name }},
|
|
|
|
{{ trans('mail.admin_has_created', ['web' => $snipeSettings->site_name]) }}
|
|
|
|
{{ trans('mail.login') }} {{ $username }} <br>
|
|
{{ trans('mail.password') }} {{ $password }}
|
|
|
|
@component('mail::button', ['url' => $url])
|
|
Go To {{$snipeSettings->site_name}}
|
|
@endcomponent
|
|
|
|
{{ trans('mail.best_regards') }} <br>
|
|
@if ($snipeSettings->show_url_in_emails=='1')
|
|
<p><a href="{{ url('/') }}">{{ $snipeSettings->site_name }}</a></p>
|
|
@else
|
|
<p>{{ $snipeSettings->site_name }}</p>
|
|
@endif
|
|
@endcomponent
|