memEx/lib/memex_web/controllers/email_html.ex

11 lines
218 B
Elixir
Raw Normal View History

2023-04-13 23:29:29 -04:00
defmodule MemexWeb.EmailHTML do
@moduledoc """
Renders email templates
"""
use MemexWeb, :html
2023-04-14 18:45:12 -04:00
embed_templates "email_html/*.html", suffix: "_html"
embed_templates "email_html/*.txt", suffix: "_text"
2023-04-13 23:29:29 -04:00
end