Files
danbooru/app/views/user_mailer/forum_notice.html.erb
Albert Yi 664a3f02e2 fixes for failed cron maintenance tasks
* update rails scripts for 5.2
* system dmails should be scoped to system
* fix broken url generator in forum notices
2018-04-27 15:01:40 -07:00

14 lines
561 B
Plaintext

<p>"<%= @forum_topic.title %>" was updated:</p>
<% @forum_posts.each do |forum_post| %>
<p>
<strong><%= forum_post.creator_name %> said:</strong>
</p>
<%= format_text(forum_post.body) %>
<br>
<hr>
<br>
<% end %>
<p><%= link_to "View topic", forum_topic_url(@forum_topic, :page => @forum_topic.last_page, :host => Danbooru.config.hostname, :only_path => false) %> | <%= link_to "Unsubscribe", maintenance_user_email_notification_url(:user_id => @user.id, :sig => email_sig(@user), :host => Danbooru.config.hostname, :only_path => false) %></p>