mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
This notification is sent only to the post owner, unless this person turned off the notifications. A simple first step into the notifications by mail world :) The mail contains a link to user profile The link to the user profile is required to give an easy access to notifications disabling. Also having a preview for the notify_post_owner method We can `Comment.first` because it is part of the db:seeds method. So there should, in development, always be one.
7 lines
211 B
Ruby
7 lines
211 B
Ruby
# Preview all emails at http://localhost:3000/rails/mailers/user_mailer
|
|
class UserMailerPreview < ActionMailer::Preview
|
|
def notify_post_owner
|
|
UserMailer.notify_post_owner(comment: Comment.first)
|
|
end
|
|
end
|