Send emails in Django in less than 5 minutes!

preview_player
Показать описание
In this video you will learn the right way to send emails in Django in 5 minutes or less using Google smtp server, this is fast and reliable.
Рекомендации по теме
Комментарии
Автор

settings.py:

EMAIL_BACKEND =
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_PASSWORD = 'app-password'
EMAIL_USE_TLS = True
EMAIL_USE_SSL = False

CodeWithClinton
Автор

Thank you for the video! It has been very helpful.

santiagofernandez
Автор

Super useful video that fixes the issue with the "Less Secure Apps" setup that I see everywhere on the internet. Thank you!

halitozkaya
Автор

Thhanks for the relevant and straightforward tutorial!

alibiamanzolov
Автор

Hi Clinton, i recently came accross celery as a message queue application of some sort.

riclerico
Автор

How about using just button click and send email? Is this possible?

weixiangng
Автор

Hey could you please make a video on django on this topic - " How to make schedule task perform in django. for example i have to to assign monthly fee for all the student in management system, so how can i do that " ? please help

e-h-ashiq
Автор

Getting this error message. "[Errno 101] Network is unreachable". What could be causing it?

uhkbowq
Автор

I followed the steps but I keep getting this error, what could be causing this? [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1129)"

CaptainChunk
Автор

Anonymous users can login to your account using app password. You can delete all your app passwords after this video.

oluwaseunogunmolu
Автор

Thank you for the video! It has been very helpful!!

santiagofernandez