Currently, in Django-notification, everytime I send a notification, it sends the email in plain text
Is there a way to customize the HTML a开发者_如何学Cnd send a notification email in html?
Just adjust your template, e.g.
- https://github.com/pinax/django-notification/blob/master/notification/templates/notification/email_body.txt
or add an extra template, e.g. email_body.html
. For that you'll have to adjust models.py
starting, e.g. here:
- https://github.com/pinax/django-notification/blob/master/notification/models.py#L311
精彩评论