mitgliederverwaltung/lib/mv_web/emails/email_layout_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

12 lines
391 B
Elixir

defmodule MvWeb.EmailLayoutView do
@moduledoc """
Layout view for transactional emails (join confirmation, user confirmation, password reset).
Renders a single layout template that wraps all email body content.
See docs/email-layout-mockup.md for the layout structure.
"""
use Phoenix.View,
root: "lib/mv_web",
path: "templates/emails/layouts",
namespace: MvWeb
end