从批处理文件发送电子邮件的最佳方法是什么?

时间:2008-12-03 17:08:39

标签: windows email batch-file

我有一个夜间批处理作业,可以判断它是否失败了。我希望它给我发送一封电子邮件,可能还附带附件。

如何从Windows批处理(.bat)文件发送电子邮件?

2 个答案:

答案 0 :(得分:4)

Blat。没有什么需要说的了。 ;)

答案 1 :(得分:3)

如果安装了IIS的SMTP服务器,则可以使用Echo命令将文件写入代答文件夹,然后发送。

echo From: test@example.com>tmp.txt
echo To: test@example.com>>tmp.txt
echo Subject: hello>>tmp.txt
echo.>>tmp.txt
echo Hello world>>tmp.txt
copy tmp.txt \Inetpub\mailroot\Pickup