PowerShell小技巧之使用Hotmail账号发送邮件
在低版本的PowerShell上发送邮件可以借助.NET的system.net.mail.smtpclient类。在高版本的PowerShell中可以借助现成的命令:Send-MailMessage
我在尝试使用Hotmail时,遇到了一个错误:
Send-MailMessage:TheSMTPserverrequiresasecureconnectionortheclientwasnotauthenticated.Theserverresponsewas:5.7.0Mustissuea STARTTLScommandfirst
后来发现是没有指定端口号,应当使用:587端口号。
Send-MailMessage-Body'test'-SmtpServersmtp.live.com-Fromappana@outlook.com-To'admin@pstips.net'-Subject'test'-UseSsl-Credentiali@outlook.com-Port587
常规错误排查:
邮箱是否开启SMTP服务
账号和密码是否输入正确
端口号是否正确