5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'app/mailers/thredded/post_mailer.rb', line 5
def post_notification(post_id, emails)
@post = find_record Thredded::Post, post_id
email_details = Thredded::TopicEmailView.new(@post.postable)
['X-SMTPAPI'] = email_details.smtp_api_tag('post_notification')
mail from: email_details.no_reply,
to: email_details.no_reply,
bcc: emails,
subject: [
Thredded.email_outgoing_prefix,
t('thredded.emails.post_notification.subject',
user: @post.user.thredded_display_name,
topic_title: @post.postable.title)
].compact.join
end
|