[#114] Removed `email_invite` implementation (to be addressed separately).
authorIvan Tashkinov <ivantashkinov@gmail.com>
Thu, 13 Dec 2018 13:22:42 +0000 (16:22 +0300)
committerIvan Tashkinov <ivantashkinov@gmail.com>
Thu, 13 Dec 2018 13:24:30 +0000 (16:24 +0300)
lib/pleroma/emails/user_email.ex

index 47dcd42e0ca9decad6ab4c57cd174f67cc1a6597..9cdf002f30eaf2b8b7e50c47dd2bcb09eb93ea4f 100644 (file)
@@ -37,25 +37,4 @@ defmodule Pleroma.UserEmail do
     |> subject("Password reset")
     |> html_body(html_body)
   end
-
-  def user_invitation_email(user, to_email, to_name \\ nil) do
-    registration_url =
-      Router.Helpers.redirect_url(
-        Endpoint,
-        :registration_page,
-        ""
-      )
-
-    html_body = """
-    <h3>You are invited to #{instance_name()}</h3>
-    <p>#{user.name} invites you to join #{instance_name()}, an instance of Pleroma federated social networking platform.</p>
-    <p>Click the following link to register: <a href="#{registration_url}">accept invitation</a>.</p>
-    """
-
-    new()
-    |> to(recipient(to_email, to_name))
-    |> from(sender())
-    |> subject("Invitation to #{instance_name()}")
-    |> html_body(html_body)
-  end
 end