From 51dfdb5013f163b4e0fbd41cca9a06dcced6f07e Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Mon, 28 Mar 2022 19:57:20 -0400 Subject: [PATCH] Updated hotmail.com SMTP server (#557) --- apprise/plugins/NotifyEmail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apprise/plugins/NotifyEmail.py b/apprise/plugins/NotifyEmail.py index c685a5f5..14937b9a 100644 --- a/apprise/plugins/NotifyEmail.py +++ b/apprise/plugins/NotifyEmail.py @@ -129,7 +129,7 @@ EMAIL_TEMPLATES = ( r'(?P(hotmail|live)\.com)$', re.I), { 'port': 587, - 'smtp_host': 'smtp.live.com', + 'smtp_host': 'smtp-mail.outlook.com', 'secure': True, 'secure_mode': SecureMailMode.STARTTLS, 'login_type': (WebBaseLogin.EMAIL, )