SMTP email from C#

来源:https://www.cnblogs.com/geovindu/archive/2019/06/18/11045584.html
-Advertisement-
Play Games

測試代碼: 不忘初心,方得始終;初心易得,始終難守。 ...


       /// <summary>
        /// 一人一附件發送郵件
        ///  2017-05-17 塗聚文  GeovinDu
        /// </summary>
        /// <param name="To">接收郵件人</param>
        /// <param name="Subject">郵件標題</param>
        /// <param name="Msg">郵件內容</param>
        /// <param name="bodyHtml">是否網頁</param>
        /// <param name="AttachmentStream"></param>
        /// <param name="AttachmentFileName">附件</param>
        /// <returns></returns>
        public static bool SendEmaildu(string To, string Subject, string Msg, bool bodyHtml, MemoryStream AttachmentStream,string AttachmentFileName)
        {
            bool SendOk = false;
            try
            {
                System.Net.Mail.MailMessage newMsg = new System.Net.Mail.MailMessage(System.Configuration.ConfigurationManager.AppSettings["mailCfg"], To, Subject, Msg);
                newMsg.BodyEncoding = System.Text.Encoding.UTF8;
                newMsg.HeadersEncoding = System.Text.Encoding.UTF8;
                newMsg.SubjectEncoding = System.Text.Encoding.UTF8;

                System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient();
                //smtpClient.Credentials = new NetworkCredential("[email protected]","888888");
                //smtpClient.Port = 25;
                //smtpClient.EnableSsl = false;
                if (AttachmentStream != null && AttachmentFileName != null)
                {

                    // ADD AN ATTACHMENT.
                    //String sFile = @"C:\Source\LNS_IS.TXT";
                    //MailAttachment oAttch = new MailAttachment(sFile, MailEncoding.Base64);
                    //string filePath = @"C:\TestEmail\SKYPE11月黑咭生日會員.xls";
                    //MemoryStream memStream = new MemoryStream();
                    //using (FileStream fileStream = File.OpenRead(filePath))
                    //{

                    //    memStream.SetLength(fileStream.Length);
                    //    fileStream.Read(memStream.GetBuffer(), 0, (int)fileStream.Length);
                    //}

                    newMsg.Attachments.Add(new Attachment(AttachmentStream, AttachmentFileName)); //MediaTypeNames.Image.Jpeg)                
                  

                    //System.Net.Mail.Attachment attachment = new System.Net.Mail.Attachment(AttachmentStream, AttachmentFileName);
                    //System.Net.Mime.ContentDisposition disposition = attachment.ContentDisposition;
                    //disposition.FileName = AttachmentFileName;
                    //disposition.DispositionType = System.Net.Mime.DispositionTypeNames.Attachment;
                    //newMsg.Attachments.Add(attachment);

                }
                newMsg.IsBodyHtml = bodyHtml;
               
                smtpClient.Send(newMsg);
                SendOk = true;
                //return SENT_OK;
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
                AttachmentStream.Close();
                SendOk = false;
                //"Error: " + ex.Message + "<br/><br/>Inner Exception: "+ ex.InnerException;

                
            }
            AttachmentStream.Close();
            return SendOk;

        }
        /// <summary>
        /// 一人一附件發送郵件
        /// 2017-05-17 塗聚文  GeovinDu
        /// </summary>
        /// <param name="To">接收郵件人</param>
        /// <param name="Subject">郵件標題</param>
        /// <param name="Msg">郵件內容</param>
        /// <param name="bodyHtml">是否網頁</param>
        /// <param name="AttachmentFileName">附件</param>
        /// <returns></returns>
        public static bool SendEmaildu(string To, string Subject, string Msg, bool bodyHtml, string AttachmentFileName)
        {
            MemoryStream AttachmentStream = new MemoryStream();
            bool SendOk = false;
            try
            {
                System.Net.Mail.MailMessage newMsg = new System.Net.Mail.MailMessage(System.Configuration.ConfigurationManager.AppSettings["mailCfg"], To, Subject, Msg);
                newMsg.BodyEncoding = System.Text.Encoding.UTF8;
                newMsg.HeadersEncoding = System.Text.Encoding.UTF8;
                newMsg.SubjectEncoding = System.Text.Encoding.UTF8;

                System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient();
                //smtpClient.Credentials = new NetworkCredential("[email protected]","888888");
                //smtpClient.Port = 25;
                //smtpClient.EnableSsl = false;
                if (AttachmentStream != null && AttachmentFileName != null)
                {

                    // ADD AN ATTACHMENT.
                    //String sFile = @"C:\Source\LNS_IS.TXT";
                    //MailAttachment oAttch = new MailAttachment(sFile, MailEncoding.Base64);
                    //string filePath = @"C:\TestEmail\SKYPE11月黑咭生日會員.xls";
                    //MemoryStream memStream = new MemoryStream();
                    //using (FileStream fileStream = File.OpenRead(filePath))
                    //{

                    //    memStream.SetLength(fileStream.Length);
                    //    fileStream.Read(memStream.GetBuffer(), 0, (int)fileStream.Length);
                    //}

                    newMsg.Attachments.Add(new Attachment(AttachmentStream, AttachmentFileName)); //MediaTypeNames.Image.Jpeg)                


                    //System.Net.Mail.Attachment attachment = new System.Net.Mail.Attachment(AttachmentStream, AttachmentFileName);
                    //System.Net.Mime.ContentDisposition disposition = attachment.ContentDisposition;
                    //disposition.FileName = AttachmentFileName;
                    //disposition.DispositionType = System.Net.Mime.DispositionTypeNames.Attachment;
                    //newMsg.Attachments.Add(attachment);

                }
                newMsg.IsBodyHtml = bodyHtml;                
                smtpClient.Send(newMsg);
                SendOk = true;
                //return SENT_OK;
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
                AttachmentStream.Close();
                SendOk = false;
                //"Error: " + ex.Message + "<br/><br/>Inner Exception: "+ ex.InnerException;


            }
            AttachmentStream.Close();
            return SendOk;

        }

        /// <summary>
        /// 一人多附件發送郵件
        /// 2019-06-18 塗聚文 GeovinDu
        /// </summary>
        /// <param name="To">接收郵件人</param>
        /// <param name="Subject">郵件標題</param>
        /// <param name="Msg">郵件內容</param>
        /// <param name="bodyHtml">是否網頁</param>
        /// <param name="AttachmentFiles">多附件</param>
        /// <returns></returns>
        public static bool SendEmailduFiles(string To, string Subject, string Msg, bool bodyHtml, List<string> AttachmentFiles)
        {
            MemoryStream AttachmentStream = new MemoryStream();
            bool SendOk = false;
            try
            {
                System.Net.Mail.MailMessage newMsg = new System.Net.Mail.MailMessage(System.Configuration.ConfigurationManager.AppSettings["mailCfg"], To, Subject, Msg);
                newMsg.BodyEncoding = System.Text.Encoding.UTF8;
                newMsg.HeadersEncoding = System.Text.Encoding.UTF8;
                newMsg.SubjectEncoding = System.Text.Encoding.UTF8;

                System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient();
                //smtpClient.Credentials = new NetworkCredential("[email protected]","888888");
                //smtpClient.Port = 25;
                //smtpClient.EnableSsl = false;
               


                if (AttachmentStream != null && AttachmentFiles != null)
                {
 
                 
                    foreach (string filename in AttachmentFiles)
                    {
                        newMsg.Attachments.Add(new Attachment(AttachmentStream, filename)); //MediaTypeNames.Image.Jpeg)   
                       
                    }     

                }
                newMsg.IsBodyHtml = bodyHtml;               
                smtpClient.Send(newMsg);
                SendOk = true;
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
                AttachmentStream.Close();
                SendOk = false;
            }
            AttachmentStream.Close();
            return SendOk;
        }

        /// <summary>
        /// 多人多附件發送郵件
        /// 不考慮統計每封郵件發送狀態(另外考慮完善代碼)
        ///  2019-06-18 塗聚文 GeovinDu
        /// </summary>
        /// <param name="Tos">多人接收郵件人</param>
        /// <param name="Subject">郵件標題</param>
        /// <param name="Msg">郵件內容</param>
        /// <param name="bodyHtml">是否網頁</param>
        /// <param name="AttachmentFiles">多附件</param>
        /// <returns></returns>
        public static bool SendEmailsAndFiles(List<string> Tos, string Subject, string Msg, bool bodyHtml, List<string> AttachmentFiles)
        {
            MemoryStream AttachmentStream = new MemoryStream();
            bool SendOk = false;
            List<Attachment> all = new List<Attachment>();
            try
            {
                if (AttachmentStream != null && AttachmentFiles != null)
                {
                    foreach (string filename in AttachmentFiles)
                    {

                        all.Add(new Attachment(AttachmentStream, filename));
                    }
                }
                if (Tos.Count > 0)
                {


                    foreach (string To in Tos)
                    {
                        System.Net.Mail.MailMessage newMsg = new System.Net.Mail.MailMessage(System.Configuration.ConfigurationManager.AppSettings["mailCfg"], To, Subject, Msg);
                        newMsg.BodyEncoding = System.Text.Encoding.UTF8;
                        newMsg.HeadersEncoding = System.Text.Encoding.UTF8;
                        newMsg.SubjectEncoding = System.Text.Encoding.UTF8;
                        System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient();
                        //smtpClient.Credentials = new NetworkCredential("[email protected]","888888");
                        //smtpClient.Port = 25;
                        //smtpClient.EnableSsl = false;
                        if (AttachmentStream != null && AttachmentFiles != null)
                        {
                            foreach (Attachment attname in all)
                            {
                                newMsg.Attachments.Add(attname); //MediaTypeNames.Image.Jpeg)   

                            }
                        }
                        newMsg.IsBodyHtml = bodyHtml;                        
                        smtpClient.Send(newMsg);
                        SendOk = true;
                   }
                }
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
                AttachmentStream.Close();
                SendOk = false;
            }
            AttachmentStream.Close();
            return SendOk;
        }

  測試代碼:

            MemoryStream theMemStream = new MemoryStream();
            string file = @"C:\TestEmail\SKYPE11月黑咭生日會員.xls";  //C:\TestEmail\Top1000WorldBanks2014.pdf
            if (File.Exists(file))
            {
                //AttachmentStream = File.Open(file, FileMode.Open, FileAccess.Read);


                byte[] filebyte = MirosoftSmptHelper.ReadFile(file);

                theMemStream.Write(filebyte, 0, filebyte.Length);// = File.OpenRead(file); 
                theMemStream.Position = 0;

                //theMemStream.Close();

                // AttachmentStream = theMemStream;// BytesToStream(filebyte); //new MemoryStream(filebyte);// // BytesToStream(filebyte);// FileToStream(file);// 

                //AttachmentStream.CanTimeout =true;
                //AttachmentStream.ReadTimeout = 1000;
                //AttachmentStream.WriteTimeout = 1000;
                //AttachmentStream = BytesToStream(filebyte);

                //theMemStream.Close();
            }
            List<string> AttachmentFiles = new List<string>();
            AttachmentFiles.Add("馬拉松獎牌刻字.xlsx");
            AttachmentFiles.Add("進一步優化供給推動消費平穩增長2019.pdf");
            AttachmentFiles.Add("逃犯條例草案.pdf");
            AttachmentFiles.Add("複習捲14.doc");
            List<string> Tos = new List<string>();
            Tos.Add("[email protected]");
            Tos.Add("[email protected]");
            Tos.Add("[email protected]");

            //1.一人一附件
            //bool issend = MirosoftSmptHelper.SendEmaildu("[email protected]", "中文文件名.net 4.0,geovindu 塗聚文塗聚文工團、", "<p> 生命運浪漫滿屋geovindu江蘇黃河</p><br/><p>上官放個屁,下官一臺戲</p>", true,"馬拉松獎牌刻字.xlsx");
            //2.一人多附件
            //bool issend = MirosoftSmptHelper.SendEmailduFiles("[email protected]", "中文文件名.net 4.0,geovindu 塗聚文塗聚文工團、", "<p> 生命運浪漫滿屋geovindu江蘇黃河</p><br/><p>上官放個屁,下官一臺戲</p>", true, AttachmentFiles);
           //3.多人多附件
            bool issend = MirosoftSmptHelper.SendEmailsAndFiles(Tos, "中文文件名.net 4.0,geovindu 塗聚文塗聚文工團、", "<p> 生命運浪漫滿屋geovindu江蘇黃河</p><br/><p>上官放個屁,下官一臺戲</p>", true, AttachmentFiles);
            theMemStream.Close();
            if (issend)
            {
                MessageBox.Show("ok");
            }
            else
            {
                MessageBox.Show("no");
            }
        }

  不忘初心,方得始終;初心易得,始終難守。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • C\ 程式調試錯誤集 [toc] 1.依賴註入錯誤An unhandled exception has occurred while executing the request. 1.1 出錯現象 System.InvalidOperationException: Unable to resolve ...
  • 最近做 .net core 項目 發現一個新的 生成excel 的插件 。 以前值用 aspose 或者 npio。 簡介:Epplus是一個使用Open Office XML(Xlsx)文件格式,能讀寫Excel 2007/2010文件的開源組件 不需要安裝office 支持 .net core ...
  • 開篇:上次我們學習了基本的數組結構。 今天,我們來學習另一個線性的數據結構,棧。 棧這種數據結構,無時無刻不在我們的身邊。是種極其重要的數據結構。 所以,什麼是棧呢?(不要廢話了,快說) 先來看我們生活中,比如我們經常操作的word文檔。 我們比如寫入四個字, (天氣真好)。 我們不想要了這句話,C ...
  • 前言:時間緊,先寫關鍵代碼,以後優化: 在此感謝其他博友分享的文章,參考文章:C#反射委托創建器 1-定義含有委托的類: 2-初始化類: 創建委托方法1--創建靜態方法的委托,只需要2個參數:委托類型和方法信息: Delegate.CreateDelegate(typeof(Action<TimeC ...
  • 前言:為了節約時間,先只粘貼關鍵代碼: 1-添加section標簽,name為自定義標簽名稱,type為:命名空間+類型,程式集名稱 2-自定義標簽數據: watchModel為自定義標簽(ConfigurationSection),watchItems為自定義標簽的數據集(Configuratio ...
  • 一、創建項目 新建api項目: 建好之後,一個預設的控制器已經有了: 運行就可以直接訪問get介面獲取數據: 二、跨平臺部署 部署方面,微軟已經完善的很好了,基本上算是傻瓜式操作。項目右鍵選擇發佈: 部署模式可以採用框架依賴,或獨立,選擇框架依賴,則需要在目標平臺安裝netcore運行時後才能運行n ...
  • LnskyDB " " " " LnskyDB是基於Dapper的Lambda擴展,支持按時間分庫分表,也可以自定義分庫分表方法.而且可以T4生成實體類免去手寫實體類的煩惱. 文檔地址: https://liningit.github.io/LnskyDB/ 開源地址: https://github ...
  • (迄今為止網上那些說的用Encoding.Default解決中文文件名亂碼的都不能真正解決問題!) 1、在程式開始處 Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); 2、設置編碼為GBK ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...