aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2018-12-13 16:22:42 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2018-12-13 16:24:30 +0300
commit9e689de06302df8b1d281c41f7774d43a0db3758 (patch)
treeb1cc7c4361d8e3a95f9231b9f5f232a7dccb0cdf /lib
parent18b9467d1a63766123f625a964303f6b4d28a39f (diff)
downloadpleroma-9e689de06302df8b1d281c41f7774d43a0db3758.tar.gz
[#114] Removed `email_invite` implementation (to be addressed separately).
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/emails/user_email.ex21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/pleroma/emails/user_email.ex b/lib/pleroma/emails/user_email.ex
index 47dcd42e0..9cdf002f3 100644
--- a/lib/pleroma/emails/user_email.ex
+++ b/lib/pleroma/emails/user_email.ex
@@ -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