I just wanna confirm if this is the right way to dynamically send emails from a centralized mailer in django. If not, how what is the right way to send dynamic emails?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (2)
We send emails in background using Celery. And we use this package to handle templating and failures: pypi.org/project/django-templated-...
Have a look, it keeps code more maintainable and easy to understand.
Thanks! I discovered this today!!