10 lines
206 B
Ruby
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
|