程式碼託管位置 github-pytools
需求
1.傳送郵件
2.不需要登入任何郵箱等等
3.支援多接收人
4.支援附件
5.支援命令列+方法呼叫
基於版本
2.4
使用2.7和3.x的童鞋,可能需要修改下import資訊
原始碼
使用官網一份程式碼進行重新修改,擴增功能
程式碼託管地址 github-pytools
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
#!/usr/bin/env python #@author : wklken@yeah.ent #@version : 0.1 #@desc: for mail sending. import smtplib import getopt import sys import os from email.MIMEMultipart import MIMEMultipart from email.MIMEBase import MIMEBase from email.MIMEText import MIMEText import email.Encoders as encoders def send_mail(mail_from, mail_to, subject, msg_txt, files=[]): # Create message container - the correct MIME type is multipart/alternative. msg = MIMEMultipart('alternative') msg['Subject'] = subject msg['From'] = mail_from msg['To'] = mail_to # Create the body of the message (a plain-text and an HTML version). #text = msg html = msg_txt # Record the MIME types of both parts - text/plain and text/html. #part1 = MIMEText(text, 'plain') part2 = MIMEText(html, 'html') # Attach parts into message container. # According to RFC 2046, the last part of a multipart message, in this case # the HTML message, is best and preferred. #msg.attach(part1) msg.attach(part2) #attachment for f in files: #octet-stream:binary data part = MIMEBase('application', 'octet-stream') part.set_payload(open(f, 'rb').read()) encoders.encode_base64(part) part.add_header('Content-Disposition', 'attachment; filename="%s"' % os.path.basename(f)) msg.attach(part) # Send the message via local SMTP server. s = smtplib.SMTP('localhost') # sendmail function takes 3 arguments: sender's address, recipient's address # and message to send - here it is sent as one string. mailto_list = mail_to.strip().split(",") if len(mailto_list) > 1: for mailtoi in mailto_list: s.sendmail(mail_from, mailtoi.strip(), msg.as_string()) else: s.sendmail(mail_from, mail_to, msg.as_string()) s.quit() return True def main(): files = [] try: opts, args = getopt.getopt(sys.argv[1:], "f:t:s:m:a:") for op, value in opts: if op == "-f": mail_from = value elif op == "-t": mail_to = value elif op == "-s": subject = value elif op == "-m": msg_txt = value elif op == "-a": files = value.split(",") except getopt.GetoptError: print(sys.argv[0] + " : params are not defined well!") print mail_from, mail_to, subject, msg_txt if files: send_mail(mail_from, mail_to, subject, msg_txt, files) else: send_mail(mail_from, mail_to, subject, msg_txt) if __name__ == "__main__": main() |
使用
CMD:
1 2 3 4 5 |
./sendEmail.py -f "fromSomeOne@XXX.com" -t "toA@XXX.com,toB@XXX.com" -s "the subject of mail" -m "the mail Message.Main Content" -a "attachment1_path,attachment2_path" |
IMPORT:
1 2 |
import sendEmail sendEmail.send_mail(mail_from, mail_to, subject, msg_txt, files) |
The end!
打賞支援我寫出更多好文章,謝謝!
打賞作者
打賞支援我寫出更多好文章,謝謝!
任選一種支付方式