10 lines
196 B
Elixir
10 lines
196 B
Elixir
defmodule RecycledCloud.Mailer do
|
|
use Bamboo.Mailer, otp_app: :recycledcloud
|
|
import Bamboo.Email
|
|
|
|
@from "no-reply@recycled.cloud"
|
|
|
|
def template do
|
|
new_email() |> from(@from)
|
|
end
|
|
end
|