mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
02d3e03f75
The URLs in notification emails didn't get server URL prepended, so users could not click on them.
9 lines
319 B
Text
9 lines
319 B
Text
<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>
|