[Python]实现发邮件

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
import smtplib
from email.mime.text import MIMEText
from email.header import Header
 
# 第三方 SMTP 服务
mail_host="smtp.163.com"  #设置服务器
mail_user="admin@163.com"    #用户名
mail_pass="123456"   #口令 
 
sender = 'admin@163.com'
receivers = ['admin@qq.com']  # 接收邮件,可设置为你的QQ邮箱或者其他邮箱
 
message = MIMEText('1111...', 'plain', 'utf-8')
message['From'] = "admin"
message['To'] =  "admin@qq.com"
 
subject = '222'
message['Subject'] = Header(subject, 'utf-8')
 
smtpObj = smtplib.SMTP() 
smtpObj.connect(mail_host, 25)    # 25 为 SMTP 端口号
smtpObj.login(mail_user,mail_pass)  
smtpObj.sendmail(sender, receivers, message.as_string())
print "邮件发送成功"

 

注意:message['From']和message['To'] 不能使用Header处理!!!

Python 中,实现发邮件附件可以使用 Python 标准库中的 smtplib 和 email 模块。以下是一个简单的示例代码,可以实现向指定邮箱发送带有附件的邮件: ```python import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.application import MIMEApplication # 邮箱账号信息 smtp_server = 'smtp.qq.com' smtp_port = 465 smtp_user = 'your_email@qq.com' smtp_password = 'your_password' # 发送方、接收方、主题、正文、附件信息 sender = 'your_email@qq.com' receivers = ['recipient_email@qq.com'] subject = 'Python 发送带附件邮件示例' body = '这是一封 Python 发送带附件邮件的示例邮件' attachment_file = 'example.txt' # 构造邮件 msg = MIMEMultipart() msg['From'] = sender msg['To'] = ','.join(receivers) msg['Subject'] = subject # 添加正文 msg.attach(MIMEText(body, 'plain')) # 添加附件 with open(attachment_file, 'rb') as f: attachment = MIMEApplication(f.read()) attachment.add_header('Content-Disposition', 'attachment', filename=attachment_file) msg.attach(attachment) # 发送邮件 server = smtplib.SMTP_SSL(smtp_server, smtp_port) server.login(smtp_user, smtp_password) server.sendmail(sender, receivers, msg.as_string()) server.quit() print('邮件发送成功!') ``` 在上面的代码中,需要替换的是发件人邮箱、收件人邮箱、邮箱账号密码以及附件文件名。通过运行这段代码,即可实现向指定邮箱发送带有附件的邮件。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值