435421 发表于 2016-4-25 09:54:43

python模块:smtplib模块

1.使用本地的sendmail协议进行邮件发送
格式(1):smtpObj=smtplib.SMTP(]])

host:SMTP服务器主机的IP地址或者是域名
port:服务的端口号(默认是25)
local_hostname:服务器的地址(默认是localhost)

格式(2):SMTP.sendmail(from_addr),to_addrs,msg[,mail_options,rcpt_options]
from_addr:邮件发送的地址
to_addr:邮件接收地址
msg:发送信息


# vim smtplib.py

#!/bin/env python
#!-*- coding:UTF-8 -*-

import smtplib
from email.mime.text import MIMEText
from email.header import Header

sender='z597011036@126.com'
receivers='z597011036@qq.com'
message=MIMEText('Python 邮件发送测试.......','plain','utf-8')
message['From']=Header('菜鸟教程','utf-8')
message['To']=Header('测试','utf-8')

subject='Python SMTP 邮件测试'
message['Subject']=Header(subject,'utf-8')

try:
    smtpObj=smtplib.SMTP('localhost')
    smtpObj.sendmail(sender,receivers,message.as_string())
    print "邮件发送成功"
except smtplib.SMTPException:
    print "Error: 无法发送邮件"
# python smtplib.py
邮件发送成功
#
页: [1]
查看完整版本: python模块:smtplib模块