Nel mio progetto ho aggiunto un feed della newsletter. Ma quando si cerca di inviare e-mail con questa funzione:Invio di email HTML in django
def send(request):
template_html = 'static/newsletter.html'
template_text = 'static/newsletter.txt'
newsletters = Newsletter.objects.filter(sent=False)
subject = _(u"Newsletter")
adr = NewsletterEmails.objects.all()
for a in adr:
for n in newsletters:
to = a.email
from_email = settings.DEFAULT_FROM_EMAIL
subject = _(u"Newsletter Fandrive")
text = get_template(template_text)
html = get_template(template_html)
d = { 'n': n,'email': to }
text_content = text.render(d)
html_content = html.render(d)
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()
utilizzando quei modelli:
//text
=================== Newsletter - {{ n.date }} ============
==========================================================
{{ n.title }}
==========================================================
{{ n.text }}
==========================================================
//html
<html>
<head>
</head>
<body>
<div style="">
<div style="">
<h1 style="">{{ n.title }} - {{n.date}}</h1>
<p style="">
{{ n.text }}
</p>
</div>
</div>
</body>
</html>
e modelli:
class Newsletter(models.Model):
title = models.CharField("title", blank=False, max_length=50)
text = models.TextField("text", blank=False)
sent = models.BooleanField("sent", default=False)
data = models.DateTimeField("creation date", auto_now_add=True, blank=False)
class NewsletterEmails(models.Model):
email = models.EmailField(_(u"e-mail address"),)
sto ottenendo:
TemplateSyntaxError at /utils/newsletter_send/
Caught an exception while rendering: 'dict' object has no attribute 'autoescape'
in {{}} n.date entro text_email modello
Anche se il mio messaggi mostra sto inviando newsletter corretta oggetti al modello, così come contesto di debug:
context {'email': u'[email protected]', 'n': <Newsletter: Newsletter object>}
Perché sta succedendo? Da quello che ho trovato su questo errore è in qualche modo collegato all'invio di un dizionario vuoto al renderer di template, ma il mio non è vuoto ...
nel vostro modello di campo data di definizione è chiamato come 'dati', è che un refuso mentre postando la domanda o ce l'hai in codice ?? – Ashok
typo, è data ovunque. Non so come sia potuto accadere però ... :) – crivateos
nei log #django Ho letto "Stai trasmettendo un dizionario a qualcosa che si aspettava un oggetto Context". . Come risolvere questo? – crivateos