通过 Python 发送电子邮件

发布于 2024-10-31 14:11:05 字数 739 浏览 0 评论 0原文

我正在尝试使用 Python 发送电子邮件。据我所知,以下代码需要的只是一个有效的收件人和一个主机HOST。我不确定如何获得主机。最简单的方法是什么?

import smtplib
import string

SUBJECT = "Test email from Python"
TO = "[email protected]"
FROM = "[email protected]"
text = "blah blah blah"
BODY = string.join((
        "From: %s" % FROM,
        "To: %s" % TO,
        "Subject: %s" % SUBJECT ,
        "",
        text
        ), "\r\n")
server = smtplib.SMTP(HOST)
server.sendmail(FROM, [TO], BODY)
server.quit()

I'm attempting to send an email with Python. From what I can tell, all the following code needs is a valid recipient and a host HOST. I'm unsure on how to get the host. What is the simplest way?

import smtplib
import string

SUBJECT = "Test email from Python"
TO = "[email protected]"
FROM = "[email protected]"
text = "blah blah blah"
BODY = string.join((
        "From: %s" % FROM,
        "To: %s" % TO,
        "Subject: %s" % SUBJECT ,
        "",
        text
        ), "\r\n")
server = smtplib.SMTP(HOST)
server.sendmail(FROM, [TO], BODY)
server.quit()

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

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

发布评论

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

评论(1

美人骨 2024-11-07 14:11:05

HOST 是您的 ISP 提供的 SMTP 中继(通常与您的发件人地址的域名相关)。如果您使用桌面邮件客户端,您将能够看到邮件设置中列出的 SMTP 服务器。如果您使用共享主机进行托管,您的主机提供商应该能够提供 SMTP 服务器供您使用。

The HOST is the SMTP relay provided by your ISP (typically related to the domain name of your from address). If you use a desktop mail client, you'll be able to see the SMTP server listed in your mail settings. If you're hosting using shared hosting, your hosting provider should be able to provide an SMTP server for you to use.

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