Powershell中调用邮件客户端发送邮件的例子
更新时间:2014年05月07日 10:15:39 作者:
这篇文章主要介绍了Powershell中调用邮件客户端发送邮件的例子,需要的朋友可以参考下
你可以使用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
相关文章
PowerShell中使用Like运算符配合通配符查找字符串例子
这篇文章主要介绍了PowerShell中使用Like运算符配合通配符查找字符串例子,Like的返值为TRUE和FALSE,需要的朋友可以参考下2014-08-08
最新评论