blob: 5b0ce7aacfd301875049db70c4beb202a7841975 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module Refinery
module Blog
class CommentMailer < ActionMailer::Base
def notification(comment, request)
@comment = comment
mail :subject => Blog::Comment::Notification.subject,
:recipients => Blog::Comment::Notification.recipients,
:from => "\"#{Refinery::Core.config.site_name}\" <no-reply@#{request.domain}>"
end
end
end
end
|