sample_rails_tailwind/app/views/user_mailer/account_activation.html.erb
songtianlun f52155f7be style: clean up account activation email template
- Remove redundant paragraph containing the activation URL
- Keep only the link for activation

This change enhances the clarity of the email template by eliminating
unnecessary elements, making it easier to maintain and understand.
2025-01-08 17:32:10 +08:00

10 lines
242 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(id: @user.activation_token, email: @user.email) %>