先註冊好php
發短信腳本內容html
#接口類型:互億無線觸發短信接口,支持發送驗證碼短信、訂單通知短信等。 #帳戶註冊:請經過該地址開通帳戶http://sms.ihuyi.com/register.html #注意事項: #(1)調試期間,請用默認的模板進行測試,默認模板詳見接口文檔; #(2)請使用APIID(查看APIID請登陸用戶中心->驗證碼短信->產品總覽->APIID)及 APIkey來調用接口; #(3)該代碼僅供接入互億無線短信接口參考使用,客戶可根據實際須要自行編寫; #!/usr/local/bin/python #-*- coding:utf-8 -*- import http.client import urllib host = "106.ihuyi.com" sms_send_uri = "/webservice/sms.php?method=Submit" #用戶名是登陸用戶中心->驗證碼短信->產品總覽->APIID account = "C17089294" #密碼 查看密碼請登陸用戶中心->驗證碼短信->產品總覽->APIKEY password = "115cfae8f8491834cf3b3xxxxxxx" def send_sms(text, mobile): params = urllib.parse.urlencode({'account': account, 'password' : password, 'content': text, 'mobile':mobile,'format':'json' }) headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"} conn = http.client.HTTPConnection(host, port=80, timeout=30) conn.request("POST", sms_send_uri, params, headers) response = conn.getresponse() response_str = response.read() conn.close() return response_str if __name__ == '__main__': mobile = "1381026xxxx" text = "您的驗證碼是:121254。請不要把驗證碼泄露給其餘人。" print(send_sms(text, mobile))
發郵件python
#發送郵件的庫 import smtplib #郵件文本 from email.mime.text import MIMEText #SMTP服務器 SMTPServer="smtp.qq.com" #發郵件的地址 Sender="525031638@qq.com" #發送者郵箱的密碼 passwd="snmvgykwzreixxxx" #設置發送的內容 message="I am groot" #轉換成郵件文本 msg=MIMEText(message) #標題 msg["Subject"]="來自樹人的問候" #發送者 msg["From"]=Sender #建立SMTP服務器 mailServer=smtplib.SMTP(SMTPServer,25) #登陸郵箱 mailServer.login(Sender,passwd) #發送郵件,其中msg.as_string()是把內容轉成郵件形式字符串 mailServer.sendmail(Sender,["525031638@qq.com","511243xx@qq.com"],msg.as_string()) #退出郵箱 mailServer.quit()
若是遇到554報錯。,多是內容不合法,也多是郵箱寫錯了web