aboutsummaryrefslogtreecommitdiffstats
path: root/app/mailers/blog/comment_mailer.rb
blob: 3710ea1e83196b8348b5582c7b26a3be53912ccc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Blog
  class CommentMailer < ActionMailer::Base

    def notification(comment, request)
      subject     BlogComment::Notification.subject
      recipients  BlogComment::Notification.recipients
      from        "\"#{RefinerySetting[:site_name]}\" <no-reply@#{request.domain(RefinerySetting.find_or_set(:tld_length, 1))}>"
      sent_on     Time.now
      @comment =  comment
    end

  end
end