mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
24 lines
644 B
Elixir
24 lines
644 B
Elixir
|
defmodule PowLockout.Phoenix.MailerTemplate do
|
||
|
@moduledoc false
|
||
|
use Pow.Phoenix.Mailer.Template
|
||
|
|
||
|
template :email_unlock,
|
||
|
"Unlock your account",
|
||
|
"""
|
||
|
Hi,
|
||
|
|
||
|
Your account has been automatically disabled due to too many unsuccessful
|
||
|
attempts to sign in.
|
||
|
|
||
|
Please use the following link to unlock your account:
|
||
|
|
||
|
<%= @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)) %>
|
||
|
"""
|
||
|
end
|