LPgenerator / django-db-mailer

Django module to easily send emails/sms/tts/push using django templates stored on database and managed through the Django Admin
https://github.com/LPgenerator/django-db-mailer
GNU General Public License v2.0
256 stars 80 forks source link

How does Mail Base Template and Message(Body) works? #59

Closed sagarg1988 closed 8 years ago

sagarg1988 commented 8 years ago

Is there any description or documentation of how to use Mail Base Template and when to use Message or Body instead? I tried to set a base template but then my message is ignored completely. Should only one of these be used? In what scenario ?What is the purpose of giving both of these fields separately?

Please let me know or link to any documentation Thanks

gotlium commented 8 years ago

This functionality is not documented, but is it have very simple API. You can specify any block on Base templates, choose it in the Message. In fact, this is equal to {% extends "base.html" %}

sagarg1988 commented 8 years ago

okay Thanks