2022-07-25 19:31:54 -04:00
|
|
|
defmodule Memex.Mailer do
|
2022-01-22 20:44:38 -05:00
|
|
|
@moduledoc """
|
2022-02-25 21:35:12 -05:00
|
|
|
Mailer adapter for emails
|
|
|
|
|
|
|
|
Since emails are loaded as Oban jobs, the `:attrs` map must be serializable to
|
|
|
|
json with Jason, which restricts the use of structs.
|
2022-01-22 20:44:38 -05:00
|
|
|
"""
|
|
|
|
|
2022-07-25 19:31:54 -04:00
|
|
|
use Swoosh.Mailer, otp_app: :memex
|
|
|
|
alias Memex.{Accounts.User, EmailWorker}
|
2022-02-25 21:35:12 -05:00
|
|
|
alias Oban.Job
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Deliver instructions to confirm account.
|
|
|
|
"""
|
|
|
|
@spec deliver_confirmation_instructions(User.t(), String.t()) :: Job.t()
|
|
|
|
def deliver_confirmation_instructions(%User{id: user_id}, url) do
|
|
|
|
%{email: :welcome, user_id: user_id, attrs: %{url: url}}
|
|
|
|
|> EmailWorker.new()
|
|
|
|
|> Oban.insert!()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Deliver instructions to reset a user password.
|
|
|
|
"""
|
|
|
|
@spec deliver_reset_password_instructions(User.t(), String.t()) :: Job.t()
|
|
|
|
def deliver_reset_password_instructions(%User{id: user_id}, url) do
|
|
|
|
%{email: :reset_password, user_id: user_id, attrs: %{url: url}}
|
|
|
|
|> EmailWorker.new()
|
|
|
|
|> Oban.insert!()
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Deliver instructions to update a user email.
|
|
|
|
"""
|
|
|
|
@spec deliver_update_email_instructions(User.t(), String.t()) :: Job.t()
|
|
|
|
def deliver_update_email_instructions(%User{id: user_id}, url) do
|
|
|
|
%{email: :update_email, user_id: user_id, attrs: %{url: url}}
|
|
|
|
|> EmailWorker.new()
|
|
|
|
|> Oban.insert!()
|
|
|
|
end
|
2022-01-22 13:01:36 -05:00
|
|
|
end
|