Files
nairobi/app/views/mailer/machine_learning_success.html.erb
taitus 73f710e737 Unify format and indentation for sanitize, i18n and links on emails
In the mail section we have very different indentations and formatting in
 texts with sanitize, links and texts with interpolations. In my opinion it
helps a lot to have clearer indentations in these cases.

This may not be the best way to indent them, but at least I think it is
clearer than it was and at least relatively unified.
2022-06-02 17:56:18 +02:00

17 lines
480 B
Plaintext

<td style="<%= css_for_mailer_content %>">
<h1 style="<%= css_for_mailer_heading %>">
<%= t("mailers.machine_learning_success.title") %>
</h1>
<p style="<%= css_for_mailer_text %>">
<%= t("mailers.machine_learning_success.text") %>
</p>
<p style="<%= css_for_mailer_text %>">
<%= link_to t("mailers.machine_learning_success.link"),
admin_machine_learning_url,
style: "color: #2895F1; text-decoration:none;" %>
</p>
</td>