@component('mail::message')
# {{ mailTemplates('Hello!', 'transfer files notification') }}
{!! str_replace('{website_name}', ''.$settings['website_name'].'',
mailTemplates('You just received some files sent to you via {website_name}', 'transfer files notification')) !!}
@component('mail::table')
| {{ mailTemplates('Details', 'transfer files notification') }} |
| -------------- |
| {{ mailTemplates('Sent by', 'transfer files notification') }} : {{ $details['sender'] }}|
@if(!is_null($details['password']))
| {{ mailTemplates('Password', 'transfer files notification') }} : {{ $details['password'] }} |
@endif
| {{ mailTemplates('Total files', 'transfer files notification') }} : {{ $details['total_files'] }} |
| {{ mailTemplates('Total files size', 'transfer files notification') }} : {{ $details['total_size'] }} |
@if(!is_null($details['expiry_at']))
| {{ mailTemplates('Files available until', 'transfer files notification') }} : {{ $details['expiry_at'] }} |
@endif
@endcomponent
@if(!is_null($details['message']))
{!! allowBr($details['message']) !!}
@endif
@component('mail::button', ['url' => $details['transfer_link']])
{{ mailTemplates('Download', 'transfer files notification') }}
@endcomponent
@component('mail::table')
| {{ mailTemplates('Transferred files', 'transfer files notification') }} |
| -------------- |
@foreach ($details['files'] as $file)
| {{ $file->name }}|
@endforeach
@endcomponent
{!! str_replace('{website_name}', ''.$settings['website_name'].'',
mailTemplates('These files are sent through our online service, and you can learn more by visiting our website directly {website_name}, Our website does not bear responsibility for your downloading these files or the way you use them.', 'transfer files notification')) !!}
{{ mailTemplates('Regards', 'transfer files notification') }},
{{ $settings['website_name'] }}
@slot('subcopy')
{{ mailTemplates("If you're having trouble clicking the button, just copy and paste the URL below into your web browser", 'transfer files notification') }}
: {{ $details['transfer_link'] }}
@endslot
@endcomponent