python实现电子邮件(E-mail)发送

使用Python进行电子邮件发送,即使在较旧版本中也能轻松处理。在遇到'ImportError: No module named mime.text'的问题时,只需将导入语句从'from email.mime.text import MIMEText'更改为'from email.MIMEText import MIMEText',同时引入Header模块。
摘要由CSDN通过智能技术生成
       前几天需要服务端发送邮件的脚本,发现直接用sendmail相对来说复杂,大才小用了,因为我只需要一个发送的功能即可。于是查查改改,很容易弄了一个。

       python弄这些简单的email client,http client, tcp client之类的真的很方便,而且windows上也可以直接执行。

 

# Import smtplib for the actual sending function
import sys
import getopt
import smtplib

sender = 'sender@xxxx'
# If there are more than one receiver, you need to ganerate a list. 
# receiver = ['a@xxxx','b@xxxx']
receiver = ['receiver@xxxx']  
server = 'smtp.mail.xxxx.cn'
port = '25'
pwd = 'password'

COMMASPACE = ', '

# Import the email modules we'll need
from email.mime.text import MIMEText

def usage():
    usageStr = '''Usage: SendEmail -c mail_content'''
    print usageStr

def main(argv):
    # Get the Email content in the "-c" argv
    try:
        opts, args = getopt.getopt(arg
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值