除localhost之外的Python SMTP

时间:2016-02-19 00:54:29

标签: python email smtp

# Import smtplib for the actual sending function
import smtplib

# Import the email modules we'll need
from email.mime.text import MIMEText

# Open a plain text file for reading.  For this example, assume that
# the text file contains only ASCII characters.
fp = open(textfile, 'rb')
# Create a text/plain message
msg = MIMEText(fp.read())
fp.close()

# me == the sender's email address
# you == the recipient's email address
msg['Subject'] = 'The contents of %s' % textfile
msg['From'] = me
msg['To'] = you

# Send the message via our own SMTP server, but don't include the
# envelope header.
s = smtplib.SMTP('localhost')
s.sendmail(me, [you], msg.as_string())
s.quit()

s = smtplib.SMTP('localhost')我是否必须设置一些东西才能工作..就像stmp服务器一样?

如果是这样,我该怎么做?谁知道我是否可以使用除localhost之外的smtp服务器? gmail smtp服务器对我不起作用,因为它必须通过gmail api并且它不能发送电子邮件作为arbritary电子邮件

[编辑]

s = smtplib.SMTP('mail')适合我 有谁知道stmp服务器'mail'指的是什么?

1 个答案:

答案 0 :(得分:1)

回答问题的核心:需要一个SMTP服务器。您可以在本地设置一个,也可以使用远程服务器。

使用哪种 SMTP服务以及 如何设置服务器对于这个社区来说太过广泛了 - 您必须做一些研究并回来提出更具体的问题。