学过Python的人都知道,实用Python实现发送email的功能还是比较简单的,可以通过登录邮件服务来发送,linux下也可以使用调用sendmail命令来发送,还可以使用本地或者是远程的smtp服务来发送邮件,不管是单个,群发,还是抄送都比较容易实现。
本文就把几个最简单的发送邮件方式记录下来,像html邮件,附件等也是支持的,读者在需要时可以参考查询一下。具体方法如下:
1.登录邮件服务
具体代码如下:
#!/usr/bin/env python # -*- coding: utf-8 -*- #python2.7x #send_simple_email_by_account.py @2014-08-18 #author: orangleliu ''' 使用python写邮件 simple 使用126 的邮箱服务 ''' import smtplib from email.mime.text import MIMEText SMTPserver = 'smtp.126.com' sender = '12345678@126.com' password = "xxxx" message = 'I send a message by Python. 你好' msg = MIMEText(message) msg['Subject'] = 'Test Email by Python' msg['From'] = sender msg['To'] = destination mailserver = smtplib.SMTP(SMTPserver, 25) mailserver.login(sender, password) mailserver.sendmail(sender, [sender], msg.as_string()) mailserver.quit() print 'send email success'
2.调用sendmail命令 (linux)
具体代码如下:
# -*- coding: utf-8 -*- #python2.7x #send_email_by_.py #author: orangleliu #date: 2014-08-18 ''' 用的是sendmail命令的方式 这个时候邮件还不定可以发出来,hostname配置可能需要更改 ''' from email.mime.text import MIMEText from subprocess import Popen, PIPE def get_sh_res(): p = Popen(['/Application/2.0/nirvana/logs/log.sh'], stdout=PIPE) return str(p.communicate()[0]) def mail_send(sender, recevier): print "get email info..." msg = MIMEText(get_sh_res()) msg["From"] = sender msg["To"] = recevier msg["Subject"] = "Yestoday interface log results" p = Popen(["/usr/sbin/sendmail", "-t"], stdin=PIPE) res = p.communicate(msg.as_string()) print 'mail sended ...' if __name__ == "__main__": s = "12345678@qq.com" r = "123456@163.com" mail_send(s, r)
3 使用smtp服务来发送(本地或者是远程服务器)
具体代码如下:
#!/usr/bin/env python # -*- coding: utf-8 -*- #python2.7x #send_email_by_smtp.py #author: orangleliu #date: 2014-08-18 ''' linux 下使用本地的smtp服务来发送邮件 前提要开启smtp服务,检查的方法 #ps -ef|grep sendmail #telnet localhost 25 这个时候邮件还不定可以发出来,hostname配置可能需要更改 ''' import smtplib from email.mime.text import MIMEText from subprocess import Popen, PIPE def get_sh_res(): p = Popen(['/Application/2.0/nirvana/logs/log.sh'], stdout=PIPE) return str(p.communicate()[0]) def mail_send(sender, recevier): msg = MIMEText(get_sh_res()) msg["From"] = sender msg["To"] = recevier msg["Subject"] = "Yestoday interface log results" s = smtplib.SMTP('localhost') s.sendmail(sender, [recevier], msg.as_string()) s.quit() print 'send mail finished...' if __name__ == "__main__": s = "123456@163.com" r = s mail_send(s, r)
相信本文所示方法对于大家进行Python程序设计能够起到一定的参考借鉴价值。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
