Skip to content Skip to sidebar Skip to footer

Django Email Sending Error

i'm trying to get a contact form on a personal site to work. i'm using the smtp outlook. Right now it gives me the following error: Traceback: Environment: Request Method: POST

Solution 1:

Try using use_ssl=True in your SMTP settings and changing the port to 465.

You can directly refer to Django SMTP options for list of all the settings you can tweak. Also please mention which Django version you are using for building your app?


Post a Comment for "Django Email Sending Error"