“E -Mail in Django senden” Code-Antworten

E -Mail in Django senden

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
Creepy Cardinal

Django -E -Mail

from django.core.mail import EmailMultiAlternatives
from django.template.loader import get_template
from django.template import Context

plaintext = get_template('email.txt')
htmly     = get_template('email.html')

d = Context({ 'username': username })

subject, from_email, to = 'hello', '[email protected]', '[email protected]'
text_content = plaintext.render(d)
html_content = htmly.render(d)
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()
Juan Gt

Ähnliche Antworten wie “E -Mail in Django senden”

Fragen ähnlich wie “E -Mail in Django senden”

Weitere verwandte Antworten zu “E -Mail in Django senden” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen