| 1 | # Preview all emails at http://localhost:3000/rails/mailers/user_notifier_mailer |
| 2 | class UserNotifierMailerPreview < ActionMailer::Preview |
| 3 | def send_signup_email |
| 4 | UserNotifierMailer.send_signup_email(User.first) |
| 5 | end |
| 6 | |
| 7 | def send_reset_password_instructions |
| 8 | UserNotifierMailer.send_reset_password_instructions(User.first) |
| 9 | end |
| 10 | |
| 11 | def send_wallet_activation_notification |
| 12 | UserNotifierMailer.send_wallet_activation_notification(User.first) |
| 13 | end |
| 14 | end |