我使用Python通过外部SMTP服务器发送电子邮件。在下面的代码中,我尝试使用smtp.gmail.com
将gmail ID中的电子邮件发送到其他ID。我能够使用下面的代码生成输出。
import smtplib
from email.MIMEText import MIMEText
import socket
socket.setdefaulttimeout(None)
HOST = "smtp.gmail.com"
PORT = "587"
sender= "somemail@gmail.com"
password = "pass"
receiver= "receiver@somedomain.com"
msg = MIMEText("Hello World")
msg['Subject'] = 'Subject - Hello World'
msg['From'] = sender
msg['To'] = receiver
server = smtplib.SMTP()
server.connect(HOST, PORT)
server.starttls()
server.login(sender,password)
server.sendmail(sender,receiver, msg.as_string())
server.close()
但是我必须在没有外部SMTP服务器的帮助下做同样的事情。如何用Python做同样的事情?
请帮忙。
答案 0 :(得分:4)
实现这一目标的最佳方法是了解使用优秀Fake SMTP的smtpd module
代码。
#!/usr/bin/env python
"""A noddy fake smtp server."""
import smtpd
import asyncore
class FakeSMTPServer(smtpd.SMTPServer):
"""A Fake smtp server"""
def __init__(*args, **kwargs):
print "Running fake smtp server on port 25"
smtpd.SMTPServer.__init__(*args, **kwargs)
def process_message(*args, **kwargs):
pass
if __name__ == "__main__":
smtp_server = FakeSMTPServer(('localhost', 25), None)
try:
asyncore.loop()
except KeyboardInterrupt:
smtp_server.close()
要使用此功能,请将上述内容另存为fake_stmp.py和:
chmod +x fake_smtp.py
sudo ./fake_smtp.py
如果您真的想了解更多细节,那么我建议您了解该模块的源代码。
如果不起作用,请尝试使用smtplib:
import smtplib
SERVER = "localhost"
FROM = "sender@example.com"
TO = ["user@example.com"] # must be a list
SUBJECT = "Hello!"
TEXT = "This message was sent with Python's smtplib."
# Prepare actual message
message = """\
From: %s
To: %s
Subject: %s
%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)
# Send the mail
server = smtplib.SMTP(SERVER)
server.sendmail(FROM, TO, message)
server.quit()
答案 1 :(得分:1)
最有可能的是,您可能已在正在使用的主机上运行SMTP服务器。如果你ls -l /usr/sbin/sendmail
它是否显示该位置存在可执行文件(或其他文件的符号链接)?如果是这样,那么您可以使用它来发送外发邮件。尝试/usr/sbin/sendmail recipient@recipientdomain.com < /path/to/file.txt
将/path/to/file.txt中包含的消息发送到recipient@recipientdomain.com(/ path/to/file.txt应该是符合RFC的电子邮件消息)。如果可行,则可以使用/ usr / sbin / sendmail从python脚本发送邮件 - 通过打开/ usr / sbin / sendmail的句柄并将消息写入其中,或者只需执行上面的命令即可python脚本通过系统调用。