aboutsummaryrefslogtreecommitdiffstats
path: root/app/mailers/refinery/blog
diff options
context:
space:
mode:
Diffstat (limited to 'app/mailers/refinery/blog')
-rw-r--r--app/mailers/refinery/blog/comment_mailer.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/mailers/refinery/blog/comment_mailer.rb b/app/mailers/refinery/blog/comment_mailer.rb
index f36ea29..dabc9e6 100644
--- a/app/mailers/refinery/blog/comment_mailer.rb
+++ b/app/mailers/refinery/blog/comment_mailer.rb
@@ -3,11 +3,11 @@ module Refinery
class CommentMailer < ActionMailer::Base
def notification(comment, request)
- subject BlogComment::Notification.subject
- recipients BlogComment::Notification.recipients
+ subject Blog::Comment::Notification.subject
+ recipients Blog::Comment::Notification.recipients
from "\"#{RefinerySetting[:site_name]}\" <no-reply@#{request.domain(RefinerySetting.find_or_set(:tld_length, 1))}>"
sent_on Time.now
- @comment = comment
+ @blog_comment = comment
end
end