Skip to content

Preview notification emails

Mike Wille edited this page Feb 24, 2017 · 1 revision

You can preview the emails that go out using Rails built in previews.

Create a file: test/mailers/previews/notifications_mailer_preview.rb with contents:

class NotificationsMailerPreview < ActionMailer::Preview
    def new_thing_happened
        NotifyOn::NotificationMailer.notify(
			NotifyOn::Notification.where(trigger_type: 'Classname').last.id,
			'email_template_name')
    end
end