Pow v1.0.20 Pow.Phoenix.Mailer.Template View Source
Module that builds mailer templates for Phoenix views using EEx with
Phoenix.HTML.Engine
.
Usage
defmodule PowExtension.Phoenix.Mailer.MailTemplate do
use Pow.Phoenix.Mailer.Template
template :mail, "Subject line", "Text content", "<p>HTML content</p>"
end
Link to this section Summary
Functions
Generate template methods.
Link to this section Functions
Generate template methods.
This macro that will compile a mailer template from the provided binaries,
and add the compiled versions to render/2
methods. The text/1
and
html/1
outputs the binaries. A subject/1
method will be added too.