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.
我有一个 POP3 电子邮件帐户 (Outlook),我可以使用 poplib 库 (NodeJS) 以编程方式从中检索电子邮件。
现在我想以编程方式在服务器中填充电子邮件:生成一封新电子邮件,我可以在其中指定“发件人”、“收件人”、“主题”等。并使其在此 POP3 帐户中可用。我的意思不是向该帐户发送电子邮件,而是生成一封电子邮件,就好像它已在该帐户中收到一样。
我怎样才能做到这一点?我愿意使用任何编程语言/库。
您不能这样做:POP3 是一种检索协议,您不能像在 IMAP4(上传和下载)或 SMTP(仅提交邮件)中那样上传邮件。