Powershell中调用邮件客户端发送邮件的例子
程序员文章站
2022-03-20 15:37:57
你可以使用send-mailmessage发送邮件,但是你想从你默认mapi客户端准备发送一份邮件,这也不是很麻烦:复制代码 代码如下:$subject = 'sendin...
你可以使用send-mailmessage发送邮件,但是你想从你默认mapi客户端准备发送一份邮件,这也不是很麻烦:
复制代码 代码如下:
$subject = 'sending via mapi client'
$body = 'my message'
$to = 'tobias@powertheshell.com'
$mail = "mailto:$to&subject=$subject&body=$body"
start-process -filepath $mail
$body = 'my message'
$to = 'tobias@powertheshell.com'
$mail = "mailto:$to&subject=$subject&body=$body"
start-process -filepath $mail
这个脚本的优势就是向用户发送邮件。只要你安装了mapi客户端,它将自动打开邮件并填充脚本指定信息。但你必须手动发送这份邮件。
文章出处:http://www.pstips.net/sending-email-via-outlook.html
上一篇: ruby 一些简单的例子