#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2018-01-15 20:40
# @Author : hhj
# @Site :
# import collections
#
import smtplib
from email.mime.text import MIMEText
# from email.utils import formataddr
import sys
def mail(cont):
ret = True
try:
msg = MIMEText(cont, ‘plain‘, ‘utf-8‘)
msg[‘From‘] = "[email protected]"
msg[‘To‘] = "[email protected]"
msg[‘Subject‘] = "主题"
server = smtplib.SMTP_SSL("smtp.qq.com",465)
server.login("[email protected]", "授权码***")
server.sendmail(‘[email protected]‘, [‘[email protected]‘, ], msg.as_string())
server.quit()
except Exception:
ret = False
return ret
def main():
cont =""
while cont=="":
cont = input("请输入邮件内容:")
else:
ret=mail(cont)
if ret==False:
print("邮件发送失败!")
else:
print("邮件发送成功!")
if __name__==‘__main__‘:
main()
python邮件发送
Posted hhjwqh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python邮件发送相关的知识,希望对你有一定的参考价值。
以上是关于python邮件发送的主要内容,如果未能解决你的问题,请参考以下文章
Javascript - 使用 HTML 片段通过电子邮件发送 JSON 输出