* Update email footer copy to account for email authentication Fixes https://github.com/forem/forem/issues/12546.
29 lines
1.2 KiB
Text
29 lines
1.2 KiB
Text
<html>
|
|
<body style='font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;'>
|
|
<table style="width:100%;max-width:700px;margin:auto;font-size:18px">
|
|
<tr>
|
|
<td style="padding:4%;">
|
|
<%= yield %>
|
|
</td>
|
|
</tr>
|
|
<% if @user %>
|
|
<tr>
|
|
<td style="padding:3% 12% 2% 4%;font-size:18px;line-height:22px;color:#7d7d7d">
|
|
<%= signed_up_with(@user) %>
|
|
|
|
<br /><br />
|
|
<div style="font-size:0.78em">
|
|
<% if @unsubscribe %>
|
|
<%= link_to "Unsubscribe", email_subscriptions_unsubscribe_url(ut: @unsubscribe), style: "color:#7d7d7d" %> |
|
|
<a href="<%= app_url(user_settings_path(:notifications)) %>" style="color:#7d7d7d">Adjust your email settings</a>
|
|
<% else %>
|
|
Don't want to get emails like this? Adjust your email settings at
|
|
<a href="<%= app_url(user_settings_path(:notifications)) %>"><%= app_url(user_settings_path(:notifications)) %></a>
|
|
<% end %>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</body>
|
|
</html>
|