scinote-web/app/views/users/mailer/notification.html.erb
Luka Murn 02d3e03f75 Bugfix for notification emails
The URLs in notification emails didn't get server URL prepended,
so users could not click on them.
2016-10-13 12:12:28 +02:00

10 lines
319 B
Plaintext

<p>Hello <%= @user.name %>!</p>
<p><%= I18n.t("notifications.email_title") %></p>
<p>Type: <%= I18n.t("notifications.types.#{@notification.type_of}") %></p>
<p><%= prepend_server_url_to_links(@notification.title.html_safe).html_safe %></p>
<p><%= prepend_server_url_to_links(@notification.message).html_safe %></p>