新建乙個字尾名為vbs的檔案,把中文替換成對應的資訊後,雙擊即可傳送,內容檔案的編碼應為utf-8
namespace = ""
set email = createobject("cdo.message")
email.from = "發件人位址"
email.to = "收件人位址"
email.subject = "測試"
x="內容檔案的絕對路徑"
'y="附件絕對路徑"
set fso=createobject("scripting.filesystemobject")
set myfile=fso.opentextfile(x,1,ture)
c=myfile.readall
myfile.close
email.textbody = c'此處可以直接寫字串,不用把內容存為附件
'email.addattachment y'去掉逗號即可傳送附件
with email.configuration.fields
.item(namespace&"sendusing") = 2
.item(namespace&"smtpserver") = "郵箱伺服器"
.item(namespace&"smtpserverport") = 25
.item(namespace&"smtpauthenticate") = 1
.item(namespace&"sendusername") = "使用者名稱"
'此處的使用者名稱和密碼為郵箱伺服器的登入使用者的郵箱和密碼
.item(namespace&"sendpassword") = "密碼"
.update
end with
email.send
set email=nothing
Django在windows下用Apache 部署
qq截圖20190216143421.png 開啟 conf httpd.conf 檔案,進行一些修改。可以直接ctrl f進行搜尋查詢 define srvroot d program files apache24 你的apache檔案路徑 serverroot d program files a...
在Windows系統下安裝caffe
最近,在懟著球面卷積神經網路原始碼看,雖然不出意外的看傻了,但caffe的安裝還是需要記錄一下的。一開始我是想在linux系統下實現的,畢竟一開始我把電腦一大塊空間給了linux系統。於是我先顛顛的照著網上的教程把anaconda先安裝了。anaconda在linux下的安裝 然後我的電腦就開始抽風...
windows用批處理呼叫Oracle指令碼
spool時間的sql指令碼 spool time.txt select sysdate from dual 獲取系統時間 spool off exit 檔案命名為time.sql,儲存在d盤根目錄下。bat檔案 命名為test.bat sqlplus life life pwd o122g4 d ...