module Refinery module Blog class CommentMailer < ActionMailer::Base def notification(comment, request) subject BlogComment::Notification.subject recipients BlogComment::Notification.recipients from "\"#{RefinerySetting[:site_name]}\" " sent_on Time.now @comment = comment end end end end