Powered by Mjml
- Add
{:phoenix_mjml, "~> 0.1.0"}
to your deps inmix.exs
. If you generated your app from the Phoenix master branch, add phoenix_mjml's master branch to your deps instead.{:phoenix_mjml, github: "chrismccord/phoenix_mjml"}
- Add the following to your Phoenix
config/config.exs
config :phoenix, :template_engines,
mjml: PhoenixMjml.Engine
- Use the
.html.mjml
extensions for your templates.
Add mjml extension to Phoenix live reload in config/dev.exs
config :hello_phoenix, HelloPhoenix.Endpoint,
live_reload: [
patterns: [
~r{priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$},
~r{web/views/.*(ex)$},
~r{web/templates/.*(eex|mjml)$}
]
]
MIT license. Please see LICENSE for details.