wblog/spec/mailers/previews/comment_mailer_preview.rb

10 lines
206 B
Ruby

class CommentMailerPreview < ActionMailer::Preview
def new
CommentMailer.new(Comment.first, 'test@example.org')
end
def reply
CommentMailer.reply(Comment.first, 'test@example.org')
end
end