mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
688a3251a9
* 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
12 lines
285 B
PHP
12 lines
285 B
PHP
@component('mail::message')
|
|
|
|
{{ trans('mail.test_mail_text') }}
|
|
|
|
Thanks,<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
|