[various] Introduce specific Email classes #949

Merged
nupplaphil merged 4 commits from task/split_emails into develop 2020-01-26 23:13:44 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit eb18a0d761 - Show all commits

View file

@ -82,7 +82,7 @@ function notifyall_post(App $a)
}
foreach ($recips as $recip) {
Emailer::send([
DI::emailer()->send([
'fromName' => $sender_name,
'fromEmail' => $sender_email,
'replyTo' => $sender_email,

View file

@ -116,7 +116,7 @@ function securemail_settings_post(App &$a, array &$b)
// enable addon for test
DI::pConfig()->set(local_user(), 'securemail', 'enable', 1);
$res = Emailer::send($params);
$res = DI::emailer()->send($params);
// revert to saved value
DI::pConfig()->set(local_user(), 'securemail', 'enable', $enable);