aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/emails
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2018-12-13 16:30:10 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2018-12-14 12:28:14 +0300
commitcc83d7ffe786f639172e28005e2912a0bad26234 (patch)
tree9ccd92747be1dbf526771f3fde11c01abe0fda5f /lib/pleroma/emails
parent30dc81667c56216e712564975ed60c062676490b (diff)
downloadpleroma-cc83d7ffe786f639172e28005e2912a0bad26234.tar.gz
[#114] Naive implementation of email invitations.
Diffstat (limited to 'lib/pleroma/emails')
-rw-r--r--lib/pleroma/emails/user_email.ex21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/pleroma/emails/user_email.ex b/lib/pleroma/emails/user_email.ex
index 9cdf002f3..47dcd42e0 100644
--- a/lib/pleroma/emails/user_email.ex
+++ b/lib/pleroma/emails/user_email.ex
@@ -37,4 +37,25 @@ 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