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.
17 lines
480 B
Plaintext
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>
|