mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:16:38 -06:00
21 lines
540 B
Ruby
21 lines
540 B
Ruby
require_dependency 'email_builder'
|
|
|
|
class InviteMailer < ActionMailer::Base
|
|
include EmailBuilder
|
|
|
|
def send_invite(invite)
|
|
|
|
# Find the first topic they were invited to
|
|
first_topic = invite.topics.order(:created_at).first
|
|
|
|
# If they were invited to a topic
|
|
build_email invite.email,
|
|
'invite_mailer',
|
|
invitee_name: invite.invited_by.username,
|
|
invite_link: "#{Discourse.base_url}/invites/#{invite.invite_key}",
|
|
topic_title: first_topic.try(:title)
|
|
|
|
end
|
|
|
|
end
|