像 PHP 一样用 Python 发送电子邮件

发布于 2024-11-17 09:12:49 字数 164 浏览 1 评论 0原文

我注意到 php 只有一个快速发送电子邮件的功能,我想知道我是否可以在 Python 中做到这一点。我知道 Python 有一个电子邮件模块,但我知道我需要运行 SMTP 服务器才能使用它,而 PHP 可以使用 sendmail。

我更愿意使用 Python 3,如果对此有任何帮助,我将不胜感激。

I noticed that php just has one quick function to send emails and I'm wondering if I can do that in Python. I know that Python has an email module, but I understand that I need to be running an SMTP server to use that, whereas PHP can use sendmail.

I would preferably like to use Python 3 and any help on this would be much appreciated.

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

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

发布评论

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

评论(1

小巷里的女流氓 2024-11-24 09:12:49

这是一个完整教程,用于在 python 中发送电子邮件..看起来他们确实有 sendmail功能也..看看

try:
   smtpObj = smtplib.SMTP('localhost')
   smtpObj.sendmail(sender, receivers, message)         
   print "Successfully sent email"
except SMTPException:
   print "Error: unable to send email"

this is a full tutorial for sending email in python..it looks like they do have sendmail function too..take a look at

try:
   smtpObj = smtplib.SMTP('localhost')
   smtpObj.sendmail(sender, receivers, message)         
   print "Successfully sent email"
except SMTPException:
   print "Error: unable to send email"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文