diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-03-07 16:12:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-07 16:12:22 +0100 |
| commit | f610a8708f11d6052a995f31cd506bc93faafa1c (patch) | |
| tree | d162a93c4e163b47b2a11039b4b99de0046e64b9 /src/lib/send_notification_email_job.cc | |
| parent | 08eb6cc9958c200ae90d376cb521bde930144c09 (diff) | |
Rename Emailer -> Email.
Diffstat (limited to 'src/lib/send_notification_email_job.cc')
| -rw-r--r-- | src/lib/send_notification_email_job.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/send_notification_email_job.cc b/src/lib/send_notification_email_job.cc index f40e8fefa..a2f3016f9 100644 --- a/src/lib/send_notification_email_job.cc +++ b/src/lib/send_notification_email_job.cc @@ -22,7 +22,7 @@ #include "send_notification_email_job.h" #include "exceptions.h" #include "config.h" -#include "emailer.h" +#include "email.h" #include "compose.hpp" #include "i18n.h" @@ -71,7 +71,7 @@ SendNotificationEmailJob::run () } set_progress_unknown (); - Emailer email (config->notification_from(), { config->notification_to() }, config->notification_subject(), _body); + Email email(config->notification_from(), { config->notification_to() }, config->notification_subject(), _body); for (auto i: config->notification_cc()) { email.add_cc (i); } |
