1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Emails.AdminEmail do
6 @moduledoc "Admin emails"
12 alias Pleroma.Web.Router.Helpers
14 defp instance_config, do: Config.get(:instance)
15 defp instance_name, do: instance_config()[:name]
17 defp instance_notify_email do
18 Keyword.get(instance_config(), :notify_email, instance_config()[:email])
21 def test_email(mail_to \\ nil) do
23 <h3>Instance Test Email</h3>
24 <p>A test email was requested. Hello. :)</p>
28 |> to(mail_to || Config.get([:instance, :email]))
29 |> from({instance_name(), instance_notify_email()})
30 |> subject("Instance Test Email")
31 |> html_body(html_body)
34 def report(to, reporter, account, statuses, comment) do
37 "<p>Comment: #{comment}"
43 if is_list(statuses) && length(statuses) > 0 do
48 status_url = Helpers.o_status_url(Pleroma.Web.Endpoint, :notice, id)
49 "<li><a href=\"#{status_url}\">#{status_url}</li>"
51 %{"id" => id} when is_binary(id) ->
52 "<li><a href=\"#{id}\">#{id}</li>"
54 id when is_binary(id) ->
55 "<li><a href=\"#{id}\">#{id}</li>"
71 <p>Reported by: <a href="#{reporter.ap_id}">#{reporter.nickname}</a></p>
72 <p>Reported Account: <a href="#{account.ap_id}">#{account.nickname}</a></p>
76 <a href="#{Pleroma.Web.Endpoint.url()}/pleroma/admin/#/reports/index">View Reports in AdminFE</a>
80 |> to({to.name, to.email})
81 |> from({instance_name(), instance_notify_email()})
82 |> subject("#{instance_name()} Report")
83 |> html_body(html_body)
86 def new_unapproved_registration(to, account) do
88 <p>New account for review: <a href="#{account.ap_id}">@#{account.nickname}</a></p>
89 <blockquote>#{HTML.strip_tags(account.registration_reason)}</blockquote>
90 <a href="#{Pleroma.Web.Endpoint.url()}/pleroma/admin/#/users/#{account.id}/">Visit AdminFE</a>
94 |> to({to.name, to.email})
95 |> from({instance_name(), instance_notify_email()})
96 |> subject("New account up for review on #{instance_name()} (@#{account.nickname})")
97 |> html_body(html_body)