1.3windows命令行下使用blat发邮件带附件
2021-07-01 19:05
标签:自动 body 文件中 blog set http lag 发送 %s 发邮件脚本模板 rem ----邮件内容----- http://blog.51cto.com/mflag/2283256 rem ----邮件内容----- rem ----附件----- rem ----执行发送----- rem ----邮件内容----- rem ----发件邮箱----- rem ----执行发送----- 1.3windows命令行下使用blat发邮件带附件 标签:自动 body 文件中 blog set http lag 发送 %s 原文地址:http://blog.51cto.com/mflag/2315592
1.3windows命令行下使用blat发邮件带附件
__游旗丶引莫(孙忠)
set body="test mail"
rem ----邮件主题----
set s="测试test"
rem ----收件邮箱-----
set t=nn1183@qq.com
rem ----发件邮箱-----
set f=442624872@qq.com
rem ----邮箱秘钥-----
set pw=hacrtlypjdracada
rem ----执行发送-----
Blat -body %body% -s %s% -t %t% -server smtp.qq.com -f %f% -u %f% -pw %pw%
优化加附件
-attach
set body="test mail"
rem ----邮件主题----
set s="测试test"
rem ----收件邮箱-----
set t=nn1183@qq.com
rem ----发件邮箱-----
set f=442624872@qq.com
rem ----邮箱秘钥-----
set pw=hacrtlypjdracada
set attach="1.txt,1.7z"
Blat -body %body% -s %s% -attach %attach% -t %t% -server smtp.qq.com -f %f% -u %f% -pw %pw%
优化文件内容从文件中取
Blat
set body="1.txt"
rem ----邮件主题----
set s="测试test"
rem ----收件邮箱-----
set t=nn1183@qq.com
rem ----附件-----
set attach="1.txt"
set f=442624872@qq.com
rem ----邮箱秘钥-----
set pw=hacrtlypjdracada
Blat %body% -s %s% -attach %attach% -t %t% -server smtp.qq.com -f %f% -u %f% -pw %pw%
文章标题:1.3windows命令行下使用blat发邮件带附件
文章链接:http://soscw.com/index.php/essay/100440.html