亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何用C#實現發送郵件

發布時間:2020-07-02 14:17:37 來源:億速云 閱讀:198 作者:Leah 欄目:編程語言

如何用C#實現發送郵件?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

#region 發送郵件部分
    private static String fromMail = "1111@126.com";  ///郵箱名稱
    private static String mailPwd = "111111";     ///密碼
    private static string toMail = "2222@163.com";  ///郵箱服務器
    private static string fileStr;//當前圖片路徑,在添加附件時用
    /// <summary>
    /// 發送郵件
    /// </summary>
    /// <param name="fileUrl">附件地址,以~分</param>
    /// <param name="screen">是否發送截屏</param>
    /// <returns></returns>
    public static string SendMail(string fileUrl, string screen)
    {
     
      MailAddress from = new MailAddress(fromMail);
      MailAddress to = new MailAddress(toMail);

      MailMessage message = new MailMessage(from, to);
      message.Subject = "M郵件 " +11111;//主題
      message.SubjectEncoding = System.Text.Encoding.UTF8;

      Attachment attachFile = new Attachment(fileStr);
      if (screen == "True")
        message.Attachments.Add(attachFile);

      string[] files = fileUrl.Split('~');
      for (int i = 0; i < files.Length; i++)
      {
        if (File.Exists(files[i]))
        {
          Attachment attachFile1 = new Attachment(fileUrl);
          message.Attachments.Add(attachFile1);
        }
      }

      try
      {
        SmtpClient client = new SmtpClient("smtp." + from.Host);

        SendMail(client, from, mailPwd, to, message);

       
        return "發送郵件成功!包含附件:" + fileUrl + " 含截圖?" + screen + "  " + DateTime.Now.ToString();
      }
      catch (SmtpException ex)
      {
        //如果錯誤原因是沒有找到服務器,則嘗試不加smtp.前綴的服務器
        if (ex.StatusCode == SmtpStatusCode.GeneralFailure)
        {
          try
          {
            //有些郵件服務器不加smtp.前綴
            SmtpClient client = new SmtpClient(from.Host);
            SendMail(client, from, mailPwd, to, message);
          
            return "發送郵件成功!包含附件:" + fileUrl + " 含截圖?" + screen + "  " + DateTime.Now.ToString();

          }
          catch (SmtpException err)
          {
           
            return "發送郵件失敗!" + err.Message + "  " + DateTime.Now.ToString();
          }
        }
        else
        {
         
          return "發送郵件失敗!" + ex.Message + "  " + DateTime.Now.ToString();
        }
      }
    }

    //根據指定的參數發送郵件
    private static void SendMail(SmtpClient client, MailAddress from, string password,
       MailAddress to, MailMessage message)
    {
      //不使用默認憑證,注意此句必須放在client.Credentials的上面
      client.UseDefaultCredentials = false;
      //指定用戶名、密碼
      client.Credentials = new NetworkCredential(from.Address, password);
      //郵件通過網絡發送到服務器
      client.DeliveryMethod = SmtpDeliveryMethod.Network;
      try
      {
        client.Send(message);
      }
      catch
      {
        throw;
      }
      finally
      {
        //及時釋放占用的資源
        message.Dispose();
      }
    }
    #endregion

關于如何用C#實現發送郵件問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

甘谷县| 建瓯市| 金堂县| 三原县| 罗定市| 吉林省| 宜州市| 营口市| 探索| 连城县| 白朗县| 金门县| 荃湾区| 鄂州市| 营山县| 紫阳县| 阿荣旗| 公主岭市| 来宾市| 泸州市| 河池市| 上思县| 新乡市| 永胜县| 定安县| 弥渡县| 泸定县| 霍山县| 平泉县| 从化市| 沂水县| 深水埗区| 监利县| 万荣县| 岳阳县| 冀州市| 南召县| 墨竹工卡县| 新田县| 景宁| 虞城县|