中国DOS联盟论坛

中国DOS联盟

-- 联合DOS 推动DOS 发展DOS --

联盟域名:www.cn-dos.net  论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!

游客:  注册 | 登录 | 命令行 | 会员 | 搜索 | 上传 | 帮助 »
中国DOS联盟论坛 » DOS批处理 & 脚本技术(批处理室) » [共享]强大命令行发邮件工具blat.exe
作者:
标题: [共享]强大命令行发邮件工具blat.exe 上一主题 | 下一主题
zerocq
中级用户




积分 458
发帖 196
注册 2006-10-5
状态 离线
『楼 主』:  [共享]强大命令行发邮件工具blat.exe

运行一些监控脚本时,当出现一些问题用这个工具一句命令发邮件到tom邮箱

把tom邮箱的免费新邮件短信提示开通,出门也随时可以了解到电脑的情况:D:D

打算下边写个循环读取邮箱的脚本,让手机通过短信回复邮件来输入一些小命令控制电脑

blat网站:www.blat.net

使用方法

blat body.txt -to ***@tom.com -base64 -charset Gb2312 -subje
ct "警告"  -server smtp.***.com -u user -pw password

2007-11-30 17:28
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
zerocq
中级用户




积分 458
发帖 196
注册 2006-10-5
状态 离线
『第 2 楼』:  

附件无法上传...

2007-11-30 17:29
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
vkill
金牌会员





积分 4103
发帖 1744
注册 2006-1-20
来自 甘肃.临泽
状态 离线
『第 3 楼』:  

让手机通过短信回复邮件来输入一些小命令控制电脑?

不太理解这段的意思,指点下

2007-12-1 15:46
查看资料  发送邮件  访问主页  发短消息 网志   编辑帖子  回复  引用回复
knoppix7
银牌会员





积分 1287
发帖 634
注册 2007-5-2
来自 cmd.exe
状态 离线
『第 4 楼』:  

这种东西放BAT里有点太暴露了。。很容易email密码就丢了...

2007-12-1 20:18
查看资料  发短消息 网志   编辑帖子  回复  引用回复
shang1018
新手上路





积分 1
发帖 1
注册 2009-1-20
状态 离线
『第 5 楼』:  

看到有的累了!

2009-1-21 13:07
查看资料  发短消息 网志   编辑帖子  回复  引用回复
Savvy
初级用户





积分 25
发帖 18
注册 2008-9-10
状态 离线
『第 6 楼』:  

哪位大侠能详细解析一下blat,我try很久也没成功.

附件 1: blat_2.6.1.rar (2009-4-16 06:16, 101.43 K,下载次数: 168)
2009-4-16 06:16
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
hugreen
初级用户





积分 23
发帖 15
注册 2008-3-26
状态 离线
『第 7 楼』:  

@echo off
:::::::::::::: 参数设置::::::::::::::
set from=xxx@163.com
set user=xxx
set pass=xxx
set to=xxx@qq.com
set subj=测试
set mail=mail_body.txt
set server=smtp.163.com
set debug=-debug -log blat.log -timestamp
::::::::::::::::: 运行blat :::::::::::::::::
blat %mail% -to %to% -base64 -charset Gb2312 -subject %subj%  -server %server% -f %from% -u %user% -pw %pass% %debug%

pause > nul & exit /b

2009-4-19 00:16
查看资料  发短消息 网志   编辑帖子  回复  引用回复
qwertl
中级用户





积分 461
发帖 243
注册 2007-10-14
状态 离线
『第 8 楼』:  

blat怎样发指定的压缩文件附件呢??

2009-4-19 05:37
查看资料  发送邮件  发短消息 网志   编辑帖子  回复  引用回复
Cappuccin0
新手上路





积分 9
发帖 7
注册 2006-6-22
状态 离线
『第 9 楼』:  

前段时间为了批量发邮件,正好研究过这个工具^_^
1. blat可以在第一次运行时用install命令将密码等信息写入注册表,以后只调用相应的profile就可以发送了。保存在注册表的时候会加密的,起码不会出现把明文写到批处理
里面的问题
blat.exe /? | find "profile"
  Blat -install <server addr> <sender's addr> [<try>[<port>[<profile>]]] [-q]
  Blat -profile [-delete | "<default>"] [profile1] [profileN] [-q]
                [<port> [<profile> [<username> [<password>]]]]]
                : set server, sender, number of tries and port for profile
                  default profile can be specified with a '-'
-p <profile>    : send with server, user, and port defined in <profile>
                : use username and password if defined in <profile>
-profile        : list all profiles in the Registry
2. 发送附件可以用-attach来指定,其他的几个选项在帮助里面都有
blat.exe /? | find "attach" | more
-attach <file>  : attach binary file(s) to message (filenames comma separated)
-attacht <file> : attach text file(s) to message (filenames comma separated)
-attachi <file> : attach text file(s) as INLINE (filenames comma separated)
-af <file>      : file containing list of binary file(s) to attach (comma
-atf <file>     : file containing list of text file(s) to attach (comma
-aef <file>     : file containing list of embed file(s) to attach (comma
                : send multipart messages, breaking attachments on <size>
[ Last edited by Cappuccin0 on 2009-4-19 at 10:58 ]

2009-4-19 10:57
查看资料  发短消息 网志   编辑帖子  回复  引用回复
Cappuccin0
新手上路





积分 9
发帖 7
注册 2006-6-22
状态 离线
『第 10 楼』:  

类似的邮件批处理工具还有一个febootimail,貌似做的挺专业的,不过可惜是收费的。

2009-4-19 11:00
查看资料  发短消息 网志   编辑帖子  回复  引用回复

请注意:您目前尚未注册或登录,请您注册登录以使用论坛的各项功能,例如发表和回复帖子等。


可打印版本 | 推荐给朋友 | 订阅主题 | 收藏主题



论坛跳转: