Skip to content

Commit

Permalink
remove domain from mailer
Browse files Browse the repository at this point in the history
  • Loading branch information
daveminer committed Nov 3, 2024
1 parent 80cc5b5 commit 9d23707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/basket_web/mails/pow/mailer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defmodule Basket.Pow.Mailer do
def cast(%{user: user, subject: subject, text: text, html: html}) do
%Swoosh.Email{}
|> to({"", user.email})
|> from({"Basket", "no-reply@halyard.systems"})
|> from({"Basket", "no-reply@example.org"})
|> subject(subject)
|> html_body(html)
|> text_body(text)
Expand Down

0 comments on commit 9d23707

Please sign in to comment.