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.
18 lines
548 B
Plaintext
18 lines
548 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
|
|
</head>
|
|
<body>
|
|
<h1>Hello, <%= @user.full_name %></h1>
|
|
<p>
|
|
There is a new comment by <%= @comment.user.full_name %> on your post <b><%= @comment.post.title %></b>
|
|
</p>
|
|
<p> To see this comment, <%= link_to "Click here", post_url(@comment.post) %> </p>
|
|
<p>Have a great day!</p>
|
|
</body>
|
|
<footer>
|
|
Annoyed ? You can <%= link_to("turn off notifications here", edit_user_registration_url) %>
|
|
</footer>
|
|
</html>
|