Current section

Files

Jump to
pow lib extensions email_confirmation phoenix mailers mailer_template.ex
Raw

lib/extensions/email_confirmation/phoenix/mailers/mailer_template.ex

defmodule PowEmailConfirmation.Phoenix.MailerTemplate do
@moduledoc false
use Pow.Phoenix.Mailer.Template
template :email_confirmation,
"Confirm your email address",
"""
Hi,
Please use the following link to confirm your e-mail address:
<%= @url %>
""",
"""
<%= content_tag(:h3, "Hi,") %>
<%= content_tag(:p, "Please use the following link to confirm your e-mail address:") %>
<%= content_tag(:p, link(@url, to: @url)) %>
"""
end