iachat/app/views/devise/mailer/reset_password_instructions.html.erb
gabrieljablonski ca765f5645 fix(mailer): update enterprise Devise template and fix HTML escaping in email translations
- Add i18n to enterprise confirmation_instructions.html.erb (SAML/SSO support)
- Add SSO-specific translation keys (en + pt_BR)
- Use raw output (<%==) in Devise ERB templates to prevent apostrophe HTML-encoding
2026-04-03 13:43:49 -03:00

11 lines
633 B
Plaintext

<p><%== t('mailer.devise.reset_password_instructions.greeting', name: @resource.name) %></p>
<p><%== t('mailer.devise.reset_password_instructions.body') %></p>
<p><%= link_to t('mailer.devise.reset_password_instructions.action'), frontend_url('auth/password/edit', reset_password_token: @token) %></p>
<p style="color: #999999; font-size: 12px;"><%== t('mailer.devise.reset_password_instructions.copy_paste') %> <%= frontend_url('auth/password/edit', reset_password_token: @token) %></p>
<p><%== t('mailer.devise.reset_password_instructions.ignore') %></p>
<p><%== t('mailer.devise.reset_password_instructions.no_change') %></p>