“Django e -mail” Kod odpowiedzi

Ustawienia e -mail Django

EMAIL_BACKEND =‘django.core.mail.backends.smtp.EmailBackend
EMAIL_HOST = ‘smtp.gmail.com’
EMAIL_USE_TLS = True
EMAIL_PORT = 587
EMAIL_HOST_USER = ‘[email protected]’
EMAIL_HOST_PASSWORD = ‘your account’s password’
Flavius Teodorof

Wysyłanie e -maila w Django

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

Odpowiedzi podobne do “Django e -mail”

Pytania podobne do “Django e -mail”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu