server: use configured email-from for sending mail

Signed-off-by: Hannes Laimer <h.laimer@proxmox.com>
This commit is contained in:
Hannes Laimer 2022-01-03 10:04:55 +01:00 committed by Dietmar Maurer
parent 62222ed068
commit e466526137
1 changed files with 4 additions and 1 deletions

View File

@ -235,6 +235,9 @@ fn send_job_status_mail(
text: &str,
) -> Result<(), Error> {
let (config, _) = crate::config::node::config()?;
let from = config.email_from;
// Note: OX has serious problems displaying text mails,
// so we include html as well
let html = format!("<html><body><pre>\n{}\n<pre>", handlebars::html_escape(text));
@ -248,7 +251,7 @@ fn send_job_status_mail(
subject,
Some(text),
Some(&html),
None,
from.as_deref(),
Some(&author),
)?;