Merge remote-tracking branch 'upstream/develop' into registration-workflow
[akkoma] / lib / pleroma / emails / user_email.ex
index 806a61fd226f85b2e168bfcdf873322911df2c53..3b9275bc3f46fd695499170296b197ac20914c14 100644 (file)
@@ -93,6 +93,19 @@ defmodule Pleroma.Emails.UserEmail do
     |> html_body(html_body)
   end
 
+  def approval_pending_email(user) do
+    html_body = """
+    <h3>Awaiting Approval</h3>
+    <p>Your account at #{instance_name()} is being reviewed by staff. You will receive another email once your account is approved.</p>
+    """
+
+    new()
+    |> to(recipient(user))
+    |> from(sender())
+    |> subject("Your account is awaiting approval")
+    |> html_body(html_body)
+  end
+
   @doc """
   Email used in digest email notifications
   Includes Mentions and New Followers data