我的 WinForms C# 程序发送电子邮件。我用过MailMessage
和SmtpClient
。在SmtpClient
I 的构造函数中传递了smtp.gmail.com
587 端口。
这是在我朋友的电脑上运行的,但是当我尝试它时,我得到了这个错误:
System.Net.Mail.SmtpException: Failure sending mail. ---> System.Net.WebException: The remote name could not be resolved: 'smtp.gmail.com'
System.Net.Mail.SmtpException: Operation Timed out
如何修复此错误?为什么它特定于我的计算机?
If i use port 25 i get exception : Operation Timed out
If i use port 587 i get exception : The remote name could not be resolved: 'smtp.gmail.com'
if i use port 465 i get exception : Operation Timed out