mitgliederverwaltung/lib/mv_web/emails/emails_view.ex
Simon 6385fbc831
All checks were successful
continuous-integration/drone/push Build is passing
feat: add join confirmation and mail templating
2026-03-09 18:15:12 +01:00

13 lines
338 B
Elixir

defmodule MvWeb.EmailsView do
@moduledoc """
View for transactional email body templates.
Templates are rendered inside EmailLayoutView layout when sent via Phoenix.Swoosh.
"""
use Phoenix.View,
root: "lib/mv_web",
path: "templates/emails",
namespace: MvWeb
use Gettext, backend: MvWeb.Gettext, otp_app: :mv
end