Outlook SMTP server unreachable
I am trying to configure my flask app with hotmail as my email to acknowledge and notify the user and myself when one send a message to me through contact form. The below configuration I use for flask-mail config.
Outlook/Hotmail Mail configs
- MAIL_SERVER= 'smtp-mail.outlook.com'
- MAIL_PORT = 587
- MAIL_USE_TLS = True
- MAIL_USERNAME = 'Myemail@hotmail.com'
- MAIL_PASSWORD = 'MyPassword'
But whenever I am trying to send a message, I am catching the below exception.
[Errno 101] Network is unreachable
I tried pinging the above smtp server from console but it's not reachable. Let me know how to fix this.
Note: I am free user as of now.