* Add header with the Danbooru name and logo. * Add footer with links to the site, the privacy policy, and the contact page. * Add "You received this email because of X" messages to remind users why they received the email. * Add basic CSS to make the design match the site.
19 lines
665 B
Plaintext
19 lines
665 B
Plaintext
<h2>Hi <%= link_to_user @user %>,</h2>
|
|
|
|
<p>
|
|
Welcome to <%= link_to Danbooru.config.canonical_app_name, root_url %>! Click the link below to verify your email address:
|
|
</p>
|
|
|
|
<p style="margin-left: 2em">
|
|
<%= link_to "Verify email address", email_verification_url(@user) %>
|
|
</p>
|
|
|
|
<p class="fineprint">
|
|
You received this email because someone signed up for <%= link_to Danbooru.config.canonical_app_name, root_url %> with your address.
|
|
<%= link_to "Click here", disable_email_notifications_url(@user) %> to disable email notifications.
|
|
</p>
|
|
|
|
<% content_for(:footer_links) do %>
|
|
/ <%= link_to "Unsubscribe", disable_email_notifications_url(@user) %>
|
|
<% end %>
|