Skip to content

Commit

Permalink
mail
Browse files Browse the repository at this point in the history
  • Loading branch information
opcache committed Oct 30, 2019
1 parent 34cf33c commit 7c5a76f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions mail/mail.test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/usr/bin/env python
#coding:utf-8
from email.mime.text import MIMEText
from email.header import Header
import smtplib

sender='[email protected]'
sender_pass='xxxxxxxxxxxxxx'
host='smtp.qq.com'
recivers=['[email protected]']
def mail():
message=MIMEText('python 邮件发送111','plain','utf-8')
message['From']='{}'.format(sender)
message['To']=','.join(recivers)
message['Subject']='邮件测试222'

try:
smtpobj=smtplib.SMTP_SSL(host,465)#启用ssl,端口为465

smtpobj.login(sender,sender_pass)

smtpobj.sendmail(sender,recivers,message.as_string())
print('sucess')
smtpobj.quit()
except:
print('error')

mail()

0 comments on commit 7c5a76f

Please sign in to comment.