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.
25 lines
717 B
25 lines
717 B
# Preview all emails at http://localhost:3000/rails/mailers/notification_mailer
|
|
class NotificationMailerPreview < ActionMailer::Preview
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/notification_mailer/mention
|
|
def mention
|
|
# NotificationMailer.mention
|
|
end
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/notification_mailer/follow
|
|
def follow
|
|
# NotificationMailer.follow
|
|
end
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/notification_mailer/favourite
|
|
def favourite
|
|
# NotificationMailer.favourite
|
|
end
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/notification_mailer/reblog
|
|
def reblog
|
|
# NotificationMailer.reblog
|
|
end
|
|
|
|
end
|