philomena/lib/pow_lockout/phoenix/mailers/mailer_template.ex

26 lines
681 B
Elixir
Raw Normal View History

2019-11-15 03:40:35 +01:00
defmodule PowLockout.Phoenix.MailerTemplate do
@moduledoc false
use Pow.Phoenix.Mailer.Template
2020-01-11 05:20:19 +01:00
template(
:email_unlock,
"Unlock your account",
"""
Hi,
2019-11-15 03:40:35 +01:00
2020-01-11 05:20:19 +01:00
Your account has been automatically disabled due to too many unsuccessful
attempts to sign in.
2019-11-15 03:40:35 +01:00
2020-01-11 05:20:19 +01:00
Please use the following link to unlock your account:
2019-11-15 03:40:35 +01:00
2020-01-11 05:20:19 +01:00
<%= @url %>
""",
"""
<%= content_tag(:h3, "Hi,") %>
<%= content_tag(:p, "Your account has been automatically disabled due to too many unsuccessful attempts to sign in.") %>
<%= content_tag(:p, "Please use the following link to unlock your account:") %>
<%= content_tag(:p, link(@url, to: @url)) %>
"""
)
2019-11-15 03:40:35 +01:00
end