码迷,mamicode.com
首页 > Windows程序 > 详细

Windows下通过脚本自动发邮件

时间:2017-05-16 23:16:51      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:telnet   smtp   windows   

创建一个脚本文件,名字随意,扩展名vbs

subject=WScript.Arguments(0)
content=WScript.Arguments(1)

set sh=WScript.CreateObject("WScript.Shell")
host=WScript.FullName

If LCase(Right(host,11))="wscript.exe" Then
    sh.run "cscript //nologo """ & WScript.ScriptFullName & Chr(34), 0
    WSCript.Quit
End If

sh.Run "cmd.exe"
WScript.Sleep 1000
sh.SendKeys "telnet"
sh.SendKeys("{Enter}")
WScript.Sleep 1000
sh.SendKeys "open smtp.somesome.com 25" 
sh.SendKeys("{Enter}")
WScript.Sleep 1000
sh.SendKeys "helo somesome.com" 
sh.SendKeys("{Enter}")
WScript.Sleep 500
sh.SendKeys "auth login" 
sh.SendKeys("{Enter}")
WScript.Sleep 500
sh.SendKeys "xxxxxxx" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "xxxxxxx" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "mail from:<test1@somesome.com>" 
sh.SendKeys("{Enter}")
WScript.Sleep 500
sh.SendKeys "rcpt to:<test1@somesome.com>" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "rcpt to:<test2@qq.com>" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "data" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "from:test1" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "to:test2" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "subject:" & subject 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys content 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys "." 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys("{Enter}")
WScript.Sleep 1000
sh.SendKeys "quit" 
sh.SendKeys("{Enter}")
WScript.Sleep 5000
sh.SendKeys("{Enter}")
WScript.Sleep 2000
sh.SendKeys "quit" 
sh.SendKeys("{Enter}")
WScript.Sleep 100
sh.SendKeys("exit{Enter}")

WScript.Quit

启动脚本,传入参数:

cscript //Nologo SendMail3.vbs subject-%time% content111


本文出自 “zl1030的记录” 博客,请务必保留此出处http://zl1030.blog.51cto.com/274507/1926402

Windows下通过脚本自动发邮件

标签:telnet   smtp   windows   

原文地址:http://zl1030.blog.51cto.com/274507/1926402

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!