From fed5f75dde635ee8bc82c881a7ab6699396bafbf Mon Sep 17 00:00:00 2001 From: sorax Date: Thu, 30 Nov 2023 17:04:04 +0100 Subject: [PATCH] set sender mail --- lib/radiator/accounts/user_notifier.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/radiator/accounts/user_notifier.ex b/lib/radiator/accounts/user_notifier.ex index 02bdc5d5..93869418 100644 --- a/lib/radiator/accounts/user_notifier.ex +++ b/lib/radiator/accounts/user_notifier.ex @@ -8,7 +8,7 @@ defmodule Radiator.Accounts.UserNotifier do email = new() |> to(recipient) - |> from({"Radiator", "contact@example.com"}) + |> from({"Radiator", "noreply@radiator.metaebene.me"}) |> subject(subject) |> text_body(body)