-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to compile the templated EmailMessage object into standard EmailMessage #8
Comments
This also may be implemented by providing property getters for body, subject, etc. |
True, but that solution would still miss the "evaluate templates NOW" feature. |
FWIW, I think I just got bitten by this when trying to use this package in combination with djcelery-email because the messages don't compile by default and a pickling error erupts. Serializing to avoid that would be quite helpful. |
You might want to try my reimplementation https://github.com/jonashaag/django-mail-templated-simple |
Looks great, thanks! On Sun, Feb 15, 2015 at 7:36 PM, Jonas Haag notifications@github.com
|
Sorry for resurrecting this old issue. It just wanted to let @ptwobrussell know that django-mail-templated-simple is now a properly tested and installable project. |
Thanks! On Fri, Nov 20, 2015 at 9:21 AM, Jonas Haag notifications@github.com
|
@jonashaag @ptwobrussell |
send_mail
function should compile messages by default. This should fix the serialization problem described in #7.The text was updated successfully, but these errors were encountered: