下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
下面只介绍简单的发送脚本 如果需要在生产环境用起来 还需要按要求修改脚本 smtplib.SMTP([host[,port[,local_hostname[,timeout]]]]) SMTP.set_deBUGlevel(level) SMTP.connect([host[,port]]) SMTP.docmd(cmd[,argstring])import smtplib,base64,time username = base64.encodestring('from').strip() password = base64.encodestring('password').strip() smtp = smtplib.SMTP() smtp.connect("smtp.yeah.net:25") print smtp.docmd('helo','from') print smtp.docmd('auth login') print smtp.docmd(username) print smtp.docmd(password) print smtp.docmd('mail from:','<[email protected]>') print smtp.docmd('rcpt to:','<[email protected]>') #data 指令表示邮件内容 print smtp.docmd('data') print smtp.docmd('''''from: [email protected] to: [email protected] subject: subject email body . ''') smtp.quit()
SMTP.helo([hostname]) SMTP.has_extn(name) SMTP.verify(address) SMTP.login(user,password) SMTP.sendmail(from_addr,to_addrs,msg[,mail_options,rcpt_options]) '''''From: [email protected] To: [email protected] Subject: test just for test''' SMTP.quit() email及其相关子模块
#!/usr/bin/python#-*-Coding:UTF-8-*- import smtplibimport time from email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipart #收件人列表mail_nameList = ["[email protected]","[email protected]"] #发送方信息mail_user = "邮箱地址"mail_pass = "邮箱密码" #邮件标题mail_subject = "python 发送测试文件"#邮件文本内容mail_context = "是邮件内容~~ ooxx" def send_main(): msg = MIMEMultipart() msg['From'] = mail_user msg['To'] = ";".join(mail_nameList) msg['Subject'] = mail_subject#添加邮件内容 txt = MIMEText("这是邮件内容~~ ooxx") msg.attach(txt) #发送邮件 smtp = smtplib.SMTP() smtp.connect('smtp.qq.com:25') smtp.login(mail_user,mail_pass) smtp.sendmail(mail_user,mail_nameList,msg.as_string()) smtp.quit() print ('邮件发送成功') if __name__ == '__main__': send_main()
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的python 发送邮件例子全部内容,希望文章能够帮你解决python 发送邮件例子所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)