Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网上找到了许多涉及通过 Poplib 下载消息的教程,但找不到任何解释如何创建新消息的内容。这存在吗?
正如 S.Lott 正确所说,您将需要一些 smtp,但要创建实际的电子邮件,请使用标准库中的电子邮件包,然后使用消息的 as_string 方法发送它。
多部分 MIME 的示例(这太酷了!)
向自己发送电子邮件以创建消息。
SMTP 是电子邮件用于发送的协议。在 Python 中,您可以在smtplib中找到它。
有许多电子邮件 RFC。这里有几个。
SMTP - RFC 821
POP - RFC 1939
IMAP - RFC 1730