From fc279ce4becf8e44d53a2d8a5d68edbf36f19361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 12 Jan 2024 12:40:43 +0100 Subject: [PATCH] Use full mail for from --- Handler/Common.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Handler/Common.hs b/Handler/Common.hs index 3330be0..2318d01 100644 --- a/Handler/Common.hs +++ b/Handler/Common.hs @@ -208,7 +208,7 @@ sendMail :: MonadIO m => Text -> Text -> TL.Text -> m () sendMail to subject body = liftIO $ renderSendMail Mail - { mailFrom = Address Nothing "noreply" + { mailFrom = Address Nothing "noreply@c3d2.de" , mailTo = [Address Nothing to] , mailCc = [] , mailBcc = []