today_ai_weather/app/views/user_mailer/account_activation.html.erb
songtianlun 299e930d1a style: format account activation email template
- Remove unnecessary line breaks in the activation link
- Clean up the formatting of the email template

This commit improves the readability of the account activation
email template by removing redundant line breaks and ensuring
consistent formatting. No functional changes were made to the
link or its behavior.
2025-01-08 14:13:45 +08:00

13 lines
328 B
Plaintext

<h1>Sample App</h1>
<p>Hi <%= @user.name %></p>
<p>
Welcome to the Sample App! Click on the link below to activate your account:
</p>
<%= link_to "Activate", edit_account_activation_url(@user.activation_token, email: @user.email) %>
<p>
<%= edit_account_activation_url(@user.activation_token, email: @user.email) %>
</p>