博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python SMTP发邮件
阅读量:4983 次
发布时间:2019-06-12

本文共 1319 字,大约阅读时间需要 4 分钟。

#

from email.mime.text import MIMETextfrom email.header import Headerimport smtplib# sender = 'zcayyl@163.com'    # 发送人的邮箱sender = '576951284@qq.com'sender_pass = ''    # 发送人的邮箱密码/授权码host = 'smtp.qq.com'        # 开启的163/qq邮箱的smtprecivers = ['zcayyl@163.com','1115230598@qq.com']  # 接受者的邮箱def mail():    message = MIMEText('s17测试', 'plain', 'utf-8')  # 第一个参数为内容(可以''' ..换行/编写网页代码 '''),第二个参数为文本格式/html,第三个为编码    message['From'] = '{}'.format(sender) # 发送者    message['To'] = ','.join(recivers)  # 接受者    message['Subject'] = '邮件测试'     # 主题    try:        smtpobj = smtplib.SMTP_SSL(host, 465)  # 启用ssl发信,端口为465        smtpobj.login(sender, sender_pass)  # 登录        smtpobj.sendmail(sender, recivers, message.as_string())        print('success')        smtpobj.quit()    except Exception as e:        print(e)    #     print('error')mail()   # emqferldqjgbbbai   调用

 

import smtplibfrom email.mime.text import MIMETextmsg = MIMEText('''你好:     我是来自 XX 的小伙子,    现在想求职一份Python的工作!    下面是我的附件简历!''')  #文本内容msg['Subject'] = "python爬虫 3年经验 东北大学"msg['From'] = "zcayyl@163.com"msg['To'] = "576951284@qq.com"s = smtplib.SMTP('smtp.163.com')  #SMTP_SSL安全发信,端口为465   SMTP/25s.login('zcayyl@163.com','13038013920') #账号/密码s.send_message(msg)print('success') #成功s.quit()
极简版 发邮件

 

转载于:https://www.cnblogs.com/zhangchen-sx/p/11155542.html

你可能感兴趣的文章
冲刺第一天(补发)
查看>>
iOS开发Xcode中切换显示语言实现国际化
查看>>
C++模板学习
查看>>
nginx
查看>>
大数据平台搭建-hadoop集群的搭建
查看>>
安装一些包管理的记录 win10
查看>>
Android RecyclerView notifyDataSetChanged不起作用
查看>>
AndroidStudio3.0 Canary 8注解报错Annotation processors must be explicitly declared now.
查看>>
Android 一个改进的okHttp封装库
查看>>
genymotion下载出现Unable to create virtual device,Server returned HTTP status code 0.
查看>>
Android 下拉刷新框架实现
查看>>
ViewPager + Fragment实现滑动标签页
查看>>
Spring与Hibernate实现增删改查两方法
查看>>
Genymotion 插件在 Eclipse 和 Android Studio 中点击后无法初始化 Initialize Engine: failed 解决方法...
查看>>
1R安装环境
查看>>
初学Python——Socket网络编程
查看>>
Linux 如何实现 VLAN - 每天5分钟玩转 OpenStack(12)
查看>>
Gym - 101252H
查看>>
2019年2月15日,复习
查看>>
线性布局Row和Column
查看>>