Add explicit parameters to Sender::send() method signature

This commit is contained in:
nupplaPhil 2020-01-26 01:04:53 +01:00
parent eb18a0d761
commit b828762910
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
2 changed files with 4 additions and 20 deletions

View file

@ -82,15 +82,7 @@ function notifyall_post(App $a)
}
foreach ($recips as $recip) {
DI::emailer()->send([
'fromName' => $sender_name,
'fromEmail' => $sender_email,
'replyTo' => $sender_email,
'toEmail' => $recip['email'],
'messageSubject' => $subject,
'htmlVersion' => $htmlversion,
'textVersion' => $textversion
]);
DI::emailer()->send($sender_name, $sender_email, $sender_email, $recip['email'], $subject, $htmlversion, $textversion);
}
notice(DI::l10n()->t('Emails sent'));