From: Ivan Tashkinov Date: Thu, 13 Dec 2018 13:22:42 +0000 (+0300) Subject: [#114] Removed `email_invite` implementation (to be addressed separately). X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=9e689de06302df8b1d281c41f7774d43a0db3758;p=akkoma [#114] Removed `email_invite` implementation (to be addressed separately). --- 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 = """ -

You are invited to #{instance_name()}

-

#{user.name} invites you to join #{instance_name()}, an instance of Pleroma federated social networking platform.

-

Click the following link to register: accept invitation.

- """ - - new() - |> to(recipient(to_email, to_name)) - |> from(sender()) - |> subject("Invitation to #{instance_name()}") - |> html_body(html_body) - end end