diff --git a/AutoTx/AutoTx.cs b/AutoTx/AutoTx.cs
index 2c6b4007ff4b0830dcd65e99bbe361243fdf4dae..b2defa9cc0a47a6eb1692659d9d8978e0c0eee74 100644
--- a/AutoTx/AutoTx.cs
+++ b/AutoTx/AutoTx.cs
@@ -117,6 +117,7 @@ namespace AutoTx
                 var mailTargetFatal = new MailTarget {
                     SmtpServer = _config.SmtpHost,
                     SmtpPort = _config.SmtpPort,
+                    From = _config.EmailFrom,
                     To = _config.AdminEmailAdress,
                     Name = "mailfatal",
                 };
@@ -127,6 +128,7 @@ namespace AutoTx
                     var mailTargetError = new MailTarget {
                         SmtpServer = _config.SmtpHost,
                         SmtpPort = _config.SmtpPort,
+                        From = _config.EmailFrom,
                         To = _config.AdminDebugEmailAdress,
                         Name = "mailerror",
                     };