如何使用Python在hotmail中发送邮件?

发布于 2024-08-27 11:10:28 字数 41 浏览 3 评论 0原文

有没有办法登录我的hotmail帐户并使用Python程序发送邮件?

Is there a way to login my hotmail account and send mails with a Python program?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

郁金香雨 2024-09-03 11:10:28

您可以尝试使用他们的 SMTP 服务器

  • 用户名:您的 Windows Live ID ,例如 [email protected]
  • 密码:您通常用于签名的密码到 Hotmail 或 Windows Live
  • SMTP 服务器:smtp.live.com(端口 25){注意:如果端口 25 已在您的网络中或被 ISP 阻止,您可以将 SMTP 端口设置为 587,并使用 TLS 或 SSL 加密,具体取决于客户端正在使用}
  • 需要身份验证吗?是(这与您的 POP 用户名和密码匹配)
  • 需要 TLS/SSL 吗?是

使用 smtplib 发送邮件。您可以在此处找到一些示例。

You can try using their SMTP server:

  • User name: Your Windows Live ID, for example [email protected]
  • Password: The password you usually use to sign in to Hotmail or Windows Live
  • SMTP server: smtp.live.com (Port 25) {Note: If port 25 has been blocked in your network or by your ISP, you can set SMTP port to 587 with TLS or SSL Encryption depending on the client in use}
  • Authentication required? Yes (this matches your POP username and password)
  • TLS/SSL required? Yes

Use smtplib to send mail. You can find some examples here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文