我不能让它在带有 powershell 2 的 Windows 7 客户端上工作
$smtpServer = "smtp.example.com"
$msg = new-object Net.Mail.MailMessage
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
$msg.From = "fromID@example.com"
$msg.ReplyTo = "replyto@example.com"
$msg.To.Add("toID@example.com")
$msg.subject = "My Subject"
$msg.body = "This is the email Body."
$smtp.Send($msg)
我收到一个异常,上面写着“异常调用”使用“1”参数发送“发送邮件失败”有人知道吗?我已经尝试过 Send-MailMessage 但它也失败了,如果我在基于服务器的窗口上运行该命令,它执行得很好。我使用相同的帐户进行程序。