python smtplib模块(实现调用第三方smtp服务器发送邮件)

本文介绍如何使用Python通过SMTP服务器发送电子邮件。具体步骤包括设置发件人、收件人信息,编写邮件内容,以及连接并登录SMTP服务器进行邮件发送。文章提供了完整的代码示例。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
#_*_ coding: utf-8 _*_
import smtplib
from email.mime.text import MIMEText  
from email.header import Header  
   
sender = 'xxxxxxx@xxxxxx.com'  #发件人
receiver = ['xxxxxxx@qq.com'#收件人
subject = 'python email test'  #定义主题
smtpserver = 'mail.urundp.com'  #第三方smtp服务器
username = 'xxxxx@xxxxxx.com'  #用户名
password = 'xxxxxxxx' #密码
 
msg = MIMEText('Python mail test','plain','utf-8'#格式:邮件内容/格式/编码
msg['Subject'= Header(subject, 'utf-8')
 
try:
    smtp = smtplib.SMTP()
    smtp.connect('mail.urundp.com')
    smtp.ehlo()
    smtp.starttls()
    smtp.login(username, password)  
    smtp.sendmail(sender, receiver, msg.as_string())  
    smtp.quit()
    print '邮件发送成功'
except smtplib.SMTPException,ex:
    print '邮件发送失败',ex



本文转自 TtrToby 51CTO博客,原文链接:http://blog.51cto.com/freshair/1873628

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值