E-mails in Django. Classy.
Project description
Django makes it really easy to send simple e-mail messages. But e-mails sometimes gets really complicated and un-DRY. That’s where ClassyMail steps in.
Django-ClassyMail is a library for building e-mail messages in a fashion similar to django’s class based views.
You can create mixins, override attributes with keyword arguments and there’s a lot of builtin functionality. Just like class based views.
Django-ClassyMail will handle css inlining, timezone, language and urls for you.
Read the docs for more info:
https://django-classymail.readthedocs.org/en/latest/
And here’s an example:
class UserMixin(ClassyMail): """ Sets language and timezone according to user preferences, adds "user" to template context and sets recipient to user's email address. """ user = None def get_timezone(self): return self.user.get_profile().timezone def get_language(self): return self.user.get_profile().language def get_to(self): return [self.user.email] def get_context_data(self): data = super(UserMixin, self).get_context_data() data['user'] = self.user return data class WelcomeEmail(UserMixin, ClassyMail): html_template_name = 'emails/welcome.html' text_template_name = 'emails/welcome.txt' def get_subject(self): return _("Welcome %s! Thanks for joining us!") % self.user.first_name
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-classymail-0.2.tar.gz
.
File metadata
- Download URL: django-classymail-0.2.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef39a2a93f3567cb5b2fe4739db4f0cd1b176267d4262b9ed3792caf8b807954 |
|
MD5 | bcf7f314530cfbe587ea99220c85d101 |
|
BLAKE2b-256 | 46c83d22db25fa36e8c273824108f0fd1b3b694188567c70f9298708a2150fe8 |