pixelfed/resources/views/emails/contact/admin.blade.php

23 lines
438 B
PHP
Raw Normal View History

2019-06-07 03:12:29 +00:00
@component('mail::message')
# New Support Message
<br>
2019-06-07 03:25:48 +00:00
@if($contact->response_requested)
**This user has requested a response from you.**
@endif
<br>
2019-06-07 03:12:29 +00:00
[**{{$contact->user->username}}**]({{$contact->user->url()}}) has sent the following message:
@component('mail::panel')
{{ $contact->message }}
@endcomponent
2019-06-07 03:25:48 +00:00
2019-06-07 03:12:29 +00:00
@component('mail::button', ['url' => $contact->adminUrl(), 'color' => 'primary'])
View Message
@endcomponent
@endcomponent