2013-06-10 16:46:08 -04:00
|
|
|
require_dependency 'email/message_builder'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
class InviteMailer < ActionMailer::Base
|
2013-06-10 16:46:08 -04:00
|
|
|
include Email::BuildEmailHelper
|
2013-02-07 16:45:24 +01:00
|
|
|
|
2016-06-05 22:52:46 +05:30
|
|
|
class UserNotificationRenderer < ActionView::Base
|
|
|
|
include UserNotificationsHelper
|
2017-04-24 15:26:06 -04:00
|
|
|
include EmailHelper
|
2016-06-05 22:52:46 +05:30
|
|
|
end
|
|
|
|
|
2017-06-30 16:09:37 +05:30
|
|
|
def send_invite(invite)
|
2013-02-05 14:16:51 -05:00
|
|
|
# Find the first topic they were invited to
|
|
|
|
first_topic = invite.topics.order(:created_at).first
|
|
|
|
|
2014-07-10 10:57:40 +05:30
|
|
|
# get invitee name (based on site setting)
|
|
|
|
invitee_name = invite.invited_by.username
|
2015-02-05 22:13:30 +05:30
|
|
|
if SiteSetting.enable_names && invite.invited_by.name.present?
|
2014-07-10 10:57:40 +05:30
|
|
|
invitee_name = "#{invite.invited_by.name} (#{invite.invited_by.username})"
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# If they were invited to a topic
|
2013-11-06 12:56:26 -05:00
|
|
|
if first_topic.present?
|
2014-07-08 22:33:11 +05:30
|
|
|
# get topic excerpt
|
|
|
|
topic_excerpt = ""
|
|
|
|
if first_topic.excerpt
|
2016-06-10 21:37:33 -05:00
|
|
|
topic_excerpt = first_topic.excerpt.tr("\n", " ")
|
2014-07-08 22:33:11 +05:30
|
|
|
end
|
|
|
|
|
2016-06-08 18:04:25 +05:30
|
|
|
template = 'invite_mailer'
|
2017-06-30 16:09:37 +05:30
|
|
|
if invite.custom_message.present?
|
2016-06-08 18:04:25 +05:30
|
|
|
template = 'custom_invite_mailer'
|
|
|
|
end
|
2016-06-07 22:54:45 +05:30
|
|
|
|
2017-04-24 15:26:06 -04:00
|
|
|
topic_title = first_topic.try(:title)
|
|
|
|
if SiteSetting.private_email?
|
2017-04-27 11:45:49 -04:00
|
|
|
topic_title = I18n.t("system_messages.private_topic_title", id: first_topic.id)
|
2017-04-24 15:26:06 -04:00
|
|
|
topic_excerpt = ""
|
|
|
|
end
|
|
|
|
|
2013-11-06 12:56:26 -05:00
|
|
|
build_email(invite.email,
|
2016-06-08 18:04:25 +05:30
|
|
|
template: template,
|
2014-07-08 22:33:11 +05:30
|
|
|
invitee_name: invitee_name,
|
2014-07-10 10:03:09 +05:30
|
|
|
site_domain_name: Discourse.current_hostname,
|
2013-11-06 12:56:26 -05:00
|
|
|
invite_link: "#{Discourse.base_url}/invites/#{invite.invite_key}",
|
2017-04-24 15:26:06 -04:00
|
|
|
topic_title: topic_title,
|
2014-07-08 22:33:11 +05:30
|
|
|
topic_excerpt: topic_excerpt,
|
2014-06-14 15:49:19 -07:00
|
|
|
site_description: SiteSetting.site_description,
|
2016-06-08 18:04:25 +05:30
|
|
|
site_title: SiteSetting.title,
|
2017-06-30 16:09:37 +05:30
|
|
|
user_custom_message: invite.custom_message)
|
2013-11-06 12:56:26 -05:00
|
|
|
else
|
2016-06-08 18:04:25 +05:30
|
|
|
template = 'invite_forum_mailer'
|
2017-06-30 16:09:37 +05:30
|
|
|
if invite.custom_message.present?
|
2016-06-08 18:04:25 +05:30
|
|
|
template = 'custom_invite_forum_mailer'
|
|
|
|
end
|
|
|
|
|
2013-11-06 12:56:26 -05:00
|
|
|
build_email(invite.email,
|
2016-06-08 18:04:25 +05:30
|
|
|
template: template,
|
2014-07-10 10:57:40 +05:30
|
|
|
invitee_name: invitee_name,
|
|
|
|
site_domain_name: Discourse.current_hostname,
|
2014-06-14 15:49:19 -07:00
|
|
|
invite_link: "#{Discourse.base_url}/invites/#{invite.invite_key}",
|
|
|
|
site_description: SiteSetting.site_description,
|
2016-06-08 18:04:25 +05:30
|
|
|
site_title: SiteSetting.title,
|
2017-06-30 16:09:37 +05:30
|
|
|
user_custom_message: invite.custom_message)
|
2013-11-06 12:56:26 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-10-10 21:17:52 +05:30
|
|
|
def send_password_instructions(user)
|
|
|
|
if user.present?
|
|
|
|
email_token = user.email_tokens.create(email: user.email)
|
|
|
|
build_email(user.email,
|
|
|
|
template: 'invite_password_instructions',
|
|
|
|
email_token: email_token.token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|