diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-01-16 20:20:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 20:20:15 +0100 |
commit | 02194838dd64558cd974e68cb0bf800dffd25c91 (patch) | |
tree | 7bf51dc8185c9aa2c5fd48c3ddf7f2edc5922c22 /spec | |
parent | 3323b4173edad987a049c6c1c2903781ed5be059 (diff) |
HTML e-mails for NotificationMailer (#6263)
* HTML e-mails for NotificationMailer (except digest) * Add HTML template for digest * Fix build
Diffstat (limited to 'spec')
-rw-r--r-- | spec/mailers/previews/notification_mailer_preview.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/mailers/previews/notification_mailer_preview.rb b/spec/mailers/previews/notification_mailer_preview.rb index 99495d862..e31445c36 100644 --- a/spec/mailers/previews/notification_mailer_preview.rb +++ b/spec/mailers/previews/notification_mailer_preview.rb @@ -13,6 +13,12 @@ class NotificationMailerPreview < ActionMailer::Preview NotificationMailer.follow(f.target_account, Notification.find_by(activity: f)) end + # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/follow_request + def follow_request + f = Follow.last + NotificationMailer.follow_request(f.target_account, Notification.find_by(activity: f)) + end + # Preview this email at http://localhost:3000/rails/mailers/notification_mailer/favourite def favourite f = Favourite.last |