-
Issue DescriptionI'm trying to determine the minimal content required for the Observations:
Note: When I mention that the email "fails to send" or "is not sent", I mean that no error is apparent in the application, but the email is not received by the intended recipient. Questions:
Any insights or explanations would be greatly appreciated, as I'm trying to customize the email content while keeping it as minimal as possible. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I've found a solution to this issue and would like to close this discussion. The problem was resolved by using {% autoescape off %} in the template. Here's the minimal working template:
This allows the password_reset_url to be rendered correctly without HTML escaping, which was likely the cause of the email delivery failures. Thank you for your attention to this matter. |
Beta Was this translation helpful? Give feedback.
I've found a solution to this issue and would like to close this discussion. The problem was resolved by using {% autoescape off %} in the template. Here's the minimal working template:
This allows the password_reset_url to be rendered correctly without HTML escaping, which was likely the cause of the email delivery failures. Thank you for your attention to this matter.