forked from AkkomaGang/akkoma
69 lines
1.8 KiB
Elixir
69 lines
1.8 KiB
Elixir
|
# Pleroma: A lightweight social networking server
|
||
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
||
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
defmodule Pleroma.User.WelcomeEmail do
|
||
|
@moduledoc """
|
||
|
The module represents the functions to send welcome email.
|
||
|
"""
|
||
|
|
||
|
alias Pleroma.Config
|
||
|
alias Pleroma.Emails
|
||
|
alias Pleroma.User
|
||
|
|
||
|
import Pleroma.Config.Utils, only: [instance_name: 0]
|
||
|
|
||
|
@spec enabled?() :: boolean()
|
||
|
def enabled?, do: Config.get([:welcome, :email, :enabled], false)
|
||
|
|
||
|
@spec send_email(User.t()) :: {:ok, Oban.Job.t()}
|
||
|
def send_email(%User{} = user) do
|
||
|
user
|
||
|
|> Emails.UserEmail.welcome(email_options(user))
|
||
|
|> Emails.Mailer.deliver_async()
|
||
|
end
|
||
|
|
||
|
defp email_options(user) do
|
||
|
bindings = [user: user, instance_name: instance_name()]
|
||
|
|
||
|
%{}
|
||
|
|> add_sender(Config.get([:welcome, :email, :sender_nickname], nil))
|
||
|
|> add_option(:subject, bindings)
|
||
|
|> add_option(:html, bindings)
|
||
|
|> add_option(:text, bindings)
|
||
|
end
|
||
|
|
||
|
defp add_option(opts, option, bindings) do
|
||
|
[:welcome, :email, option]
|
||
|
|> Config.get(nil)
|
||
|
|> eval_string(bindings)
|
||
|
|> merge_options(opts, option)
|
||
|
end
|
||
|
|
||
|
def add_sender(opts, nickname) do
|
||
|
nickname
|
||
|
|> fetch_sender()
|
||
|
|> merge_options(opts, :sender)
|
||
|
end
|
||
|
|
||
|
defp merge_options(nil, options, _option), do: options
|
||
|
|
||
|
defp merge_options(value, options, option) do
|
||
|
Map.merge(options, %{option => value})
|
||
|
end
|
||
|
|
||
|
defp fetch_sender(nickname) when is_binary(nickname) do
|
||
|
with %User{local: true} = user <- User.get_cached_by_nickname(nickname) do
|
||
|
{instance_name(), user.email}
|
||
|
else
|
||
|
_ -> nil
|
||
|
end
|
||
|
end
|
||
|
|
||
|
defp fetch_sender(_), do: nil
|
||
|
|
||
|
defp eval_string(nil, _), do: nil
|
||
|
defp eval_string("", _), do: nil
|
||
|
defp eval_string(str, bindings), do: EEx.eval_string(str, bindings)
|
||
|
end
|