smtpclient

    0熱度

    1回答

    我做了一個簡單的程序來發送電子郵件,但它沒有發送它們,並給我一個例外。 下面的代碼: using System.Net; using System.Net.Mail; public class test{ public static void Main() { SmtpClient client = new SmtpClient(); client

    0熱度

    2回答

    我正在我的Visual Studio中的asp.net mvc web應用程序工作。沒有我的Web應用程序基本上是公共用戶的網站(所以我沒有使用https)。現在我的網站提供了一個正常的與我們聯繫表單,和下面的郵政聯繫的操作方法: - [HttpPost] public ActionResult Contact(Contact c) { var mail =

    9熱度

    1回答

    我試圖通過SmtpClient連接到我的Gmail帳戶,但它似乎無法正常工作。我指定了端口465,啓用SSL並定義了所有內容,但需要2分鐘,然後只顯示消息未發送的錯誤。 我在這裏做錯了什麼? try { MailMessage msg = new MailMessage(); msg.From = new MailAddress("[email protected]);

    -1熱度

    3回答

    我想阻止特定的IP地址,它試圖通過smtpd登錄到我的後綴服務器。因此,在/etc/postfix/main.cf中添加以下: smtpd_client_restrictions = reject_rbl_client sbl.spamhaus.org, ... check_client_access hash:/etc/postfix/blacklist 我的/

    1熱度

    1回答

    我們正在使用System.Net.Mail.SmtpException發送電子郵件的項目。 SmtpClient client = new SmtpClient("127.0.0.1"); if (ConfigSetting.Is2008 || ConfigSetting.IsLocal) client.DeliveryMethod = SmtpDeliv

    0熱度

    1回答

    我試圖從我的C#web應用程序中打gmail smtp服務器,但得到以下錯誤: 1)失敗發送消息 2)「操作已超時。 以下是我的代碼, MailMessage message = new MailMessage(); SmtpClient smtpClient = new SmtpClient(); string msg = string.Empty; try

    0熱度

    1回答

    我使用System.Net.Mail.SMTPclient通過SMTP郵件發送郵件。 這是一個簡單的任務,有時沒有任何問題的工作。 但有時候,在發送幾封電子郵件之後,我開始出現錯誤。 重新啓動我的服務並不重要。當我嘗試調試應用程序時,我也開始從我的PC上的開發環境中得到相同的錯誤。我只是發送100-200封電子郵件,所以我不認爲這是一個限制或超載問題。 有時它有效,有時不會,我不認爲我的代碼有什麼

    0熱度

    2回答

    我想用ASP.NET中的SMTPClient使用GoDaddy郵件服務器發送郵件,我的代碼如下,我嘗試了GoDaddy中的所有端口,但是我無法發送郵件 我的代碼: try { //Mail Message MailMessage mM = new MailMessage(); //Mail Address mM.From = new Ma

    0熱度

    1回答

    System.Net.Mail.SmtpException: Failure sending mail. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made beca

    -2熱度

    5回答

    我想要一個程序,需要一個字符串,並將其發送到電子郵件給gmail,然後將其發送到手機作爲文本消息。 我很確定我所有的代碼都很好,但是當我指定它時,它總是說「必須指定一個來自地址的地址」。有人可以指出錯誤,或只是給我修改代碼? using System; using System.Collections.Generic; using System.Linq; using System.Text