PowerShell小技巧之使用Hotmail账号发送邮件

Yelena ·
更新时间:2024-11-15
· 737 次阅读

在低版本的PowerShell上发送邮件可以借助.NET的system.net.mail.smtpclient类。在高版本的PowerShell中可以借助现成的命令:Send-MailMessage

我在尝试使用Hotmail时,遇到了一个错误:

Send-MailMessage : The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first

后来发现是没有指定端口号,应当使用:587端口号。

Send-MailMessage -Body 'test' -SmtpServer smtp.live.com -From appana@outlook.com -To 'admin@pstips.net' -Subject 'test' -UseSsl -Credential i@outlook.com -Port 587

常规错误排查:

邮箱是否开启SMTP服务
账号和密码是否输入正确
端口号是否正确

您可能感兴趣的文章:Shell脚本实现自动发送邮件的例子Shell脚本监控服务器在线状态和邮件报警的方法Powershell中调用邮件客户端发送邮件的例子3个备份系统文件并邮件发送的Shell脚本分享当备份数据库不能用时.用邮件列表得到WEBSHELL!(图)Shell脚本实现删除邮件队列Shell脚本实现硬盘空间和表空间的使用情况统计并邮件通知linux shell发送Email邮件的方法详解



需要 登录 后方可回复, 如果你还没有账号请 注册新账号