20 lines
514 B
Elixir
20 lines
514 B
Elixir
![]() |
defmodule CoreEmail do
|
||
|
@moduledoc """
|
||
|
The core library for email in the application. The functions here can be composed in the application to send
|
||
|
different emails.
|
||
|
"""
|
||
|
import Bamboo.Email
|
||
|
use Bamboo.Phoenix, view: CoreWeb.CoreEmailView
|
||
|
|
||
|
def base_email() do
|
||
|
new_email()
|
||
|
|> put_html_layout({CoreWeb.CoreEmailView, "email.html"})
|
||
|
|> put_text_layout({CoreWeb.CoreEmailView, "email.text"})
|
||
|
|> from(sender())
|
||
|
end
|
||
|
|
||
|
defp sender() do
|
||
|
Application.get_env(:core, :email_from)
|
||
|
end
|
||
|
end
|