【问题标题】:Send email using smtp but operation timed out using ZOHO使用 smtp 发送电子邮件但使用 ZOHO 操作超时
【发布时间】:2013-12-09 14:46:46
【问题描述】:
Dim Smtp_Server As New SmtpClient
Dim e_mail As New MailMessage()
Smtp_Server.UseDefaultCredentials = False
Smtp_Server.Credentials = New Net.NetworkCredential(abc@zoho.com,abc123)
Smtp_Server.Port = 465
Smtp_Server.EnableSsl = True
Smtp_Server.Host = "smtp.zoho.com"
e_mail = New MailMessage()
e_mail.From = New MailAddress(abc@zoho.com)
e_mail.To.Add("david@hotmail.com")
e_mail.Subject = "Testing"
e_mail.IsBodyHtml = False
Smtp_Server.Send(e_mail)
Return True

现在我尝试向其他人发送电子邮件,但在使用 ZOHO 发送时,错误显示操作超时。我找到了解决方案,但仍然无法发送。我该如何解决?

【问题讨论】:

    标签: vb.net email smtp zoho


    【解决方案1】:

    尝试使用 PORT : 587

    Smtp_Server.Port = 587
    

    【讨论】:

      猜你喜欢
      • 2015-12-09
      • 2013-08-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多