snipe-it/resources/views/notifications/Welcome.blade.php
fordster78 68a9855506 New First Admin Notification (#5147)
* New First Admin Notification

* Include Last name in Welcome and First admin Notifications
2018-03-03 14:37:42 -08:00

20 lines
580 B
PHP

@component('mail::message')
{{ trans('mail.hello') }} {{ $first_name }} {{$last_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