You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
717 B

  1. # Preview all emails at http://localhost:3000/rails/mailers/notification_mailer
  2. class NotificationMailerPreview < ActionMailer::Preview
  3. # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/mention
  4. def mention
  5. # NotificationMailer.mention
  6. end
  7. # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/follow
  8. def follow
  9. # NotificationMailer.follow
  10. end
  11. # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/favourite
  12. def favourite
  13. # NotificationMailer.favourite
  14. end
  15. # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/reblog
  16. def reblog
  17. # NotificationMailer.reblog
  18. end
  19. end