10 lines
254 B
Ruby
10 lines
254 B
Ruby
# Preview all emails at http://localhost:3000/rails/mailers/form_mailer
|
|
class FormMailerPreview < ActionMailer::Preview
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/form_mailer/received
|
|
def received
|
|
FormMailer.received
|
|
end
|
|
|
|
end
|