today_ai_weather/app/views/user_mailer/account_activation.html.erb
songtianlun 1f2c66300a style: format email link for consistency
- Adjust spacing in the email parameter of the link_to helper
- Ensure consistent formatting in the account activation email

This change improves the readability of the code by ensuring
consistent spacing in the parameters, which can help prevent
errors in future modifications.
2025-01-08 13:59:25 +08:00

15 lines
414 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>