songtianlun
299e930d1a
- 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.
13 lines
328 B
Plaintext
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> |