我一直在尝试使用 batch/blat.exe 发送电子邮件。棘手的部分是将正文作为 Html 消息发送。
Set EmailBody="htmlPath\file.html"
set to=-to to@Email.com
set f=-f from@Email.com
set server=-server mail.Server1.com
set subject=-subject "Subject of Email"
set password=-pw password
set username=-u username
:: Send the email
Path\Blat.exe - %EmailBody% %to% %f% %subject% %server% %username% %password%
我使用的 html 文件很简单:
<p>This is a Test</p><br/>with a second line
关于 Blat 的内容不多,我见过的几个例子对我不起作用。谁能告诉我我做错了什么?
非常感谢任何帮助。