Python實現向QQ群成員自動發郵件的方法

來源:互聯網
上載者:User
本文執行個體講述了Python實現向QQ群成員自動發郵件的方法。分享給大家供大家參考。具體實現方法如下:

原理:

我們需要先擷取QQ群中的所有成員並儲存到一個txt文本中去,然後再由python讀取檔案然後進行批量郵件發送了,具體解決方案如下:

1. 擷取QQ群成員QQ號碼,QQ群成員資訊可以在如下網頁中擷取,選擇全部成員儲存在txt中即可
http://qun.qzone.qq.com/group#!/123456/member
(這裡的123456為QQ群號碼)

2. 解析擷取的QQ群成員列表list.txt,給每個成員單獨自動發送郵件,這裡使用的發送方是163郵箱

完整指令碼如下:

代碼如下:

#coding:utf-8
import random
import smtplib
from email.mime.text import MIMEText
import time

def send_mail(mailto):
print 'Setting MIMEText'
CT=open('content.txt','r') #讀取發送郵件內容
content=CT.read().decode('utf-8')
msg=MIMEText(content.encode('utf8'),_subtype='html')
CT.close()#關閉檔案
msg['From']=mail_user
msg['SUbject']=u'Python郵件發送測試'
msg['To']=mailto

try:
print 'Connectting',mail_host
s=smtplib.SMTP_SSL(mail_host,465)
print 'Login to mail_host'
s.login(mail_user,mail_pwd)
print 'Send mail'
s.sendmail(mail_user,mailto,msg.as_string())
print 'Close the connection between the mail server'
s.close()
except Exception as e:
print "Exceptioin ",e
def sendqunmail():
try:
f=open(filelist,'r')
lines=f.readlines()
for i in range(len(lines)-1):
if lines[i].find('(')<>-1 and lines[i].find(')')<>-1:
qqnum=lines[i].split('(')[1].split(')')[0]
if qqnum.isdigit():
mailto=qqnum+'@qq.com'
print 'Sendmail to:'+mailto
send_mail(mailto)
time.sleep(10)
except Exception,ex:
print filelist,ex
if __name__=="__main__":
mail_host='smtp.163.com'
mail_user='test@163.com'
mail_pwd='test123'
filelist='list.txt'
sendqunmail()

希望本文所述對大家的Python程式設計有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.