@component('mail::message')
# {{ mailTemplates('Hello!', 'transfer expired notification') }}
{!! str_replace('{website_name}', ''.$settings['website_name'].'',
mailTemplates('Your transfer on {website_name} has been expired', 'transfer expired notification')) !!}
@component('mail::table')
| {{ mailTemplates('Details', 'transfer expired notification') }} |
| -------------- |
| {{ mailTemplates('Transfer number', 'transfer expired notification') }} : {{ $details['transfer_number'] }}|
@if(!is_null($details['transfer_subject']))
| {{ mailTemplates('Subject', 'transfer expired notification') }} : {{ $details['transfer_subject'] }}|
@endif
| {{ mailTemplates('Sent by', 'transfer expired notification') }} : {{ $details['sender'] }}|
| {{ mailTemplates('Total files', 'transfer expired notification') }} : {{ $details['total_files'] }} |
| {{ mailTemplates('Total files size', 'transfer expired notification') }} : {{ $details['total_size'] }} |
@if(!is_null($details['downloaded_at']))
| {{ mailTemplates('Files downloaded at', 'transfer expired notification') }} : {{ $details['downloaded_at'] }} |
@endif
@endcomponent
@if(!is_null($details['transfer_link']))
@component('mail::button', ['url' => $details['transfer_link'], 'color' => 'error'])
{{ mailTemplates('View Transfer', 'transfer expired notification') }}
@endcomponent
@endif
@component('mail::table')
| {{ mailTemplates('Transferred files', 'transfer expired notification') }} |
| -------------- |
@foreach ($details['files'] as $file)
| {{ $file->name }}|
@endforeach
@endcomponent
{{ mailTemplates('Regards', 'transfer expired notification') }},
{{ $settings['website_name'] }}
@endcomponent