簡體   English   中英

無法從asp.net發送電子郵件

[英]cannot send email from asp.net

它適用於特定的電子郵件地址,但其余電子郵件無效。.出現以下錯誤:

Server Error in '/RealTimeArsenicDataVisualizer' Application.
Mailbox name not allowed. The server response was: From address not verified - see http://help.yahoo.com/l/us/yahoo/mail/original/manage/sendfrom-07.html 

我的代碼:

 System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient("smtp.mail.yahoo.co.in", 587);

        client.UseDefaultCredentials = false;
     client.Credentials = new System.Net.NetworkCredential(emailid, password);

            client.Port = 587;

            client.Host = "smtp.mail.yahoo.co.in";

            client.EnableSsl = false;

            object userstate = msg;

            client.Send(msg);

將代碼更改為以下代碼:

client.Port = 465;

client.Host = " smtp.mail.yahoo.com";
client.EnableSsl = true;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM