使用SMTP从Python发送邮件

使用SMTP从Python发送邮件,第1张

使用SMTP从Python发送邮件

我使用的脚本非常相似。我将其发布在此处,作为如何使用email。*模块生成MIME消息的示例。因此可以轻松修改此脚本以附加图片等。

我依靠ISP添加日期时间标头。

我的ISP要求我使用安全的smtp连接发送邮件,我依靠smtplib模块(可从http://www1.cs.columbia.edu/~db2501/ssmtplib.py下载)

就像您的脚本中一样,用于在SMTP服务器上进行身份验证的用户名和密码(下面提供了伪值)在源中为纯文本格式。这是一个安全漏洞。但是最好的选择取决于您对这些保护有多认真(想要?)。

=======================================

#! /usr/local/bin/pythonSMTPserver = 'smtp.att.yahoo.com'sender =     'me@my_email_domain.net'destination = ['recipient@her_email_domain.com']USERNAME = "USER_NAME_FOR_INTERNET_SERVICE_PROVIDER"PASSWORD = "PASSWORD_INTERNET_SERVICE_PROVIDER"# typical values for text_subtype are plain, html, xmltext_subtype = 'plain'content="""Test message"""subject="Sent from Python"import sysimport osimport refrom smtplib import SMTP_SSL as SMTP       # this invokes the secure SMTP protocol (port 465, uses SSL)# from smtplib import SMTP       # use this for standard SMTP protocol   (port 25, no encryption)# old version# from email.MIMEText import MIMETextfrom email.mime.text import MIMETexttry:    msg = MIMEText(content, text_subtype)    msg['Subject']=       subject    msg['From']   = sender # some SMTP servers will do this automatically, not all    conn = SMTP(SMTPserver)    conn.set_debuglevel(False)    conn.login(USERNAME, PASSWORD)    try:        conn.sendmail(sender, destination, msg.as_string())    finally:        conn.quit()except:    sys.exit( "mail failed; %s" % "CUSTOM_ERROR" ) # give an error message


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5643935.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存