Merge pull request #9255 from MrPetovan/bug/fatal-errors
Add expected method MailBuilder->withHeaders
This commit is contained in:
commit
9c7a4ae2bd
2 changed files with 33 additions and 3 deletions
|
|
@ -550,13 +550,13 @@ function notification($params)
|
|||
'title' => $title,
|
||||
'body' => $body,
|
||||
'subject' => $subject,
|
||||
'headers' => $emailBuilder->getHeaders(),
|
||||
];
|
||||
|
||||
Hook::callAll('enotify_mail', $datarray);
|
||||
|
||||
$builder = DI::emailer()
|
||||
->newNotifyMail()
|
||||
->addHeaders($datarray['headers'])
|
||||
$emailBuilder
|
||||
->withHeaders($datarray['headers'])
|
||||
->withRecipient($params['to_email'])
|
||||
->forUser([
|
||||
'uid' => $datarray['uid'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue