手机
当前位置:查字典教程网 >脚本专栏 >PowerShell >PowerShell小技巧之使用Hotmail账号发送邮件
PowerShell小技巧之使用Hotmail账号发送邮件
摘要:在低版本的PowerShell上发送邮件可以借助.NET的system.net.mail.smtpclient类。在高版本的PowerShe...

在低版本的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服务

账号和密码是否输入正确

端口号是否正确

【PowerShell小技巧之使用Hotmail账号发送邮件】相关文章:

Powershell小技巧之删除不规则字符

PowerShell中的$Input变量使用实例

Powershell小技巧之使用Copy-Item添加程序到开机启动

PowerShell中使用ArrayList实现数组插入、删除、添加例子

Powershell小技巧之使用-F方法带入数据

Powershell小技巧之通过EventLog查看近期电脑开机和关机时间

PowerShell函数中使用必选参数实例

PowerShell函数参数用星号隐藏的方法

PowerShell中使用return语句退出函数例子

PowerShell小技巧之配置机器的静态IP

精品推荐
分类导航