From dc13e0f2287e98cb3175d972f9aed61e8d28b128 Mon Sep 17 00:00:00 2001 From: Uku Taht Date: Mon, 23 Sep 2019 13:40:12 +0100 Subject: [PATCH] Set from-address as Plausible Insights --- lib/plausible_web/email.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plausible_web/email.ex b/lib/plausible_web/email.ex index 62c4dcbe7..46edca37f 100644 --- a/lib/plausible_web/email.ex +++ b/lib/plausible_web/email.ex @@ -90,7 +90,7 @@ defmodule PlausibleWeb.Email do def weekly_report(email, site, assigns) do new_email() |> to(email) - |> from("Uku Taht ") + |> from("Plausible Insights ") |> tag("weekly-report") |> subject("Weekly report for #{site.domain}") |> render("weekly_report.html", Keyword.put(assigns, :site, site))