6 lines
117 B
Ruby
6 lines
117 B
Ruby
![]() |
class PostMailerPreview < ActionMailer::Preview
|
||
|
def new
|
||
|
PostMailer.new(Post.first, 'to@example.org')
|
||
|
end
|
||
|
end
|