Fixes for company import mailer
This commit is contained in:
parent
81c2230296
commit
ca4fbabf7d
2 changed files with 2 additions and 2 deletions
|
|
@ -58,6 +58,6 @@ class CompanyImportFailure extends Mailable
|
|||
|
||||
return $this->from(config('mail.from.address'), config('mail.from.name'))
|
||||
->subject(ctrans('texts.company_import_failure_subject', ['company' => $this->company->present()->name()]))
|
||||
->view('email.import.import_failure');
|
||||
->view('email.import.import_failure', ['user_message' => $this->user_message, 'title' => $this->title]);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
@include('email.components.header', ['logo' => $logo])
|
||||
@endslot
|
||||
|
||||
<h2>{{ctrans('texts.company_import_failure_subject')}}</h2>
|
||||
<h2>{{ $title }}</h2>
|
||||
|
||||
<p>{{ctrans('texts.company_import_failure_body')}}</p>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue