Skip to content

Commit

Permalink
Fix @docmodule typo in user_notifier.ex
Browse files Browse the repository at this point in the history
  • Loading branch information
lurnid committed Nov 15, 2024
1 parent f1e3648 commit 4d62e51
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions lib/maker_passport/accounts/user_notifier.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule MakerPassport.Accounts.UserNotifier do
@moduledoc """
@moduledoc false
import Swoosh.Email

alias MakerPassport.Mailer
Expand All @@ -22,20 +22,22 @@ defmodule MakerPassport.Accounts.UserNotifier do
Deliver instructions to confirm account.
"""
def deliver_confirmation_instructions(user, url) do
deliver(user.email, "Confirmation instructions", """
deliver(user.email,
"Maker Passport account confirmation instructions",
"""
==============================
==============================
Hi #{user.email},
Hi #{user.email},
You can confirm your account by visiting the URL below:
You can confirm your account by visiting the URL below:
#{url}
#{url}
If you didn't create an account with us, please ignore this.
If you didn't create an account with us, please ignore this.
==============================
""")
==============================
""")
end

@doc """
Expand Down

0 comments on commit 4d62e51

Please sign in to comment.