在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#网络编程 → 使用qq邮箱批量发送邮件 实例源码(支持富文本)

使用qq邮箱批量发送邮件 实例源码(支持富文本)

C#网络编程

下载此实例
  • 开发语言:C#
  • 实例大小:4.36M
  • 下载次数:43
  • 浏览次数:547
  • 发布时间:2019-09-02
  • 实例类别:C#网络编程
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】

【实例截图】

from clipboard

【核心代码】

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using WinHtmlEditor;
using System.Data.OleDb;
using System.IO;

namespace MailSending
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            //初始化邮箱服务器
            //Dictionary<string, int> dicList = new Dictionary<string, int>();
            //dicList.Add("smtp.qq.com", 25);
            //dicList.Add("smtp.163.com", 25);
            //dicList.Add("smtp.mail.yahoo.com", 25);
            //dicList.Add("smtp.126.com", 25);
            //dicList.Add("smtp.sina.com", 25);
            //dicList.Add("smtp.sohu.com", 25);
            //dicList.Add("smtp.gmail.com", 25);
            //foreach (var item in dicList)
            //{
            //    ddlList.Items.Add(item.Key);
            //}
            //ddlList.SelectedIndex = 0;


            //初始化皮肤
            //skinEngine1.SkinFile = "Skins\\PageColor2.ssk";
            //skinEngine1.SkinFile = "Skins\\CalmnessColor1.ssk";
            //skinEngine1.SkinFile = "Skins\\CalmnessColor2.ssk";

            skinEngine1.SkinFile = "Skins\\WarmColor1.ssk";
           
            skinEngine1.AddForm(this);

            this.htmlEditor1.BodyInnerHTML = "";
            //this.editor.FontName = new FontFamily("Arial");
            //this.editor.FontSize = FontSize.Seven;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            //固定只能看表格
            openFileDialog1.Filter = "Microsoft Excel files(*.xls)|*.xls;*.xlsx";
            openFileDialog1.InitialDirectory = Application.StartupPath;
            //路径选择
            DialogResult dr = openFileDialog1.ShowDialog();
            if (dr == DialogResult.OK)
            {
                string filepath = openFileDialog1.FileName;
                string fullname = filepath.Substring(filepath.LastIndexOf(@"\")   1);
                string filename = fullname.Substring(0, fullname.LastIndexOf("."));

                //路径添加到textBox
                textBox1.Text = filepath;

                #region 读取相应的表名的Excel文件中数据到当前DataGridview中显示

                string strConn = string.Format("Provider=Microsoft.ACE.OLEDB.12.0;"   "Data Source={0};"   "Extended Properties='Excel 8.0;HDR=NO;IMEX=1';", textBox1.Text.Trim());
                if ((System.IO.Path.GetExtension(textBox1.Text.Trim())).ToLower() == ".xls")
                {
                    strConn = "Provider=Microsoft.Jet.OLEDB.4.0;"   "data source="   textBox1.Text.Trim()   ";Extended Properties=Excel 5.0;Persist Security Info=False";
                    //sConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="   txtFilePath.Text.Trim()   ";Extended Properties=\"Excel 8.0;HDR="   strHead   ";IMEX=1\"";  
                }

                using (OleDbConnection oleDbConn = new OleDbConnection(strConn))
                {
                    oleDbConn.Open();
                    DataTable dt = oleDbConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
                    //判断是否cmb中已有数据,有则清空  
                    comboBox1.DataSource = null;
                    comboBox1.Items.Clear();
                    //遍历dt的rows得到所有的TABLE_NAME,并Add到cmb中  
                    foreach (DataRow drow in dt.Rows)
                    {
                        comboBox1.Items.Add((String)drow["TABLE_NAME"]);
                    }
                    if (comboBox1.Items.Count > 0)
                    {
                        comboBox1.SelectedIndex = 0;
                    }
                }

                getExcelDataByTableName(comboBox1.Text.Trim(), strConn);

                #endregion

            }
        }

        //按Excel表名查询表下所有数据
        public void getExcelDataByTableName(string sTableName, string strConn)
        {
            OleDbConnection ole = null;
            OleDbDataAdapter da = null;
            DataTable dtShow = null;
            string strExcel = "select * from ["   sTableName   "]";
            try
            {
                ole = new OleDbConnection(strConn);
                ole.Open();
                da = new OleDbDataAdapter(strExcel, ole);
                dtShow = new DataTable();
                da.Fill(dtShow);

                this.dataGridView1.DataSource = dtShow;

                int j = 0;
                dataGridView1.Rows[j].HeaderCell.Value = "序号";
                for (int i = 0; i < dataGridView1.Rows.Count; i  )
                {
                    j = i   1;
                    dataGridView1.Rows[i].HeaderCell.Value = j.ToString();
                }

                //因为生成Excel的时候第一行是标题,所以要做如下操作:  
                //1.修改DataGridView列头的名字,  
                //2.数据列表中删除第一行  
                //int aaa = dtShow.Columns.Count;
                //for (int i = 0; i < dtShow.Columns.Count; i  )
                //{
                //    //dgvdata.Columns[i].AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells;  
                //    //dgvdata.Columns[i].Name = dt.Columns[i].ColumnName;  
                //    dataGridView1.Columns[i].HeaderCell.Value = dtShow.Rows[0][i].ToString();//c# winform 用代码修改DataGridView列头的名字,设置列名,修改列名  
                //}
                //DataGridView删除行  
                //dataGridView1.Rows.Remove(dataGridView1.Rows[0]);//删除第一行  
                //dgvdata.Rows.Remove(dgvdata.CurrentRow);//删除当前光标所在行  
                //dgvdata.Rows.Remove(dgvdata.Rows[dgvdata.Rows.Count - 1]);//删除最后一行  
                //dgvdata.Rows.Clear();//删除所有行  
                ole.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
            finally
            {
                if (ole != null)
                    ole.Close();
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            if (txtSendUser.Text.Trim().Length == 0 || txtSendUserPwd.Text.Trim().Length == 0)
            {
                MessageBox.Show("发件人和密码不能为空!"); return;
            }
            if (who.Text.Trim().Length==0 || txtTitle.Text.Trim().Length == 0)
            {
                MessageBox.Show("中文名称和标题不能为空!"); return;
            }
            int conut = this.dataGridView1.Rows.Count;
            int bb = 0;
            int cc = 0;
            for (int i = 0; i < conut-1; i  )
            {
                //获取发送内容
               string content = this.dataGridView1.Rows[i].Cells[0].Value.ToString().Trim();
               //判断邮箱类型  dicList.Add("smtp.qq.com", 25);
               //dicList.Add("smtp.163.com", 25);
               //dicList.Add("smtp.mail.yahoo.com", 25);
               //dicList.Add("smtp.126.com", 25);
               //dicList.Add("smtp.sina.com", 25);
               //dicList.Add("smtp.sohu.com", 25);
               //dicList.Add("smtp.gmail.com", 25);
               string smtp = "";
               if (txtSendUser.Text.Contains("@qq.com"))
               {
                   smtp = "smtp.qq.com";
               }
               else if (txtSendUser.Text.Contains("@163.com"))
               {
                   smtp = "smtp.163.com";

               }
               else if (txtSendUser.Text.Contains("@126.com"))
               {
                   smtp = "smtp.126.com";

               }
               else if (txtSendUser.Text.Contains("@sina.com"))
               {
                   smtp = "smtp.sina.com";

               }
               else if (txtSendUser.Text.Contains("@sohu.com"))
               {
                   smtp = "smtp.sohu.com";

               }
               else if (txtSendUser.Text.Contains("@mail.yahoo.com"))
               {
                   smtp = "smtp.mail.yahoo.com";

               }
               else if (txtSendUser.Text.Contains("@gmail.com"))
               {
                   smtp = "smtp.gmail.com";

               }
                //滚动到发送的行
               this.dataGridView1.CurrentCell= this.dataGridView1.Rows[i].Cells[0];
                //设置行样式为红色
               this.dataGridView1.Rows[i].Cells[0].Style.BackColor = Color.Red;
                //发送邮件
               bool flag = MailHelper.SendMail(txtSendUser.Text, who.Text, txtSendUser.Text, txtSendUserPwd.Text, txtTitle.Text, htmlEditor1.BodyInnerHTML, content, openFileDialog1, smtp, null);
               //判断记录发送成功和发送失败的数量
                if (flag)
                {
                    bb  ;
                }
                else
                {
                    cc  ;
                }
           
               }
            MessageBox.Show("发送完成!共发送" (bb cc) "条!成功:" bb "条!失败:" cc "条!");
            //bool flag = MailHelper.SendMail(txtSendUser.Text, txtSendUser.Text, txtSendUser.Text, txtSendUserPwd.Text, txtTitle.Text, htmlEditor1.BodyInnerHTML, txtRecvierUser.Text, openFileDialog1, ddlList.Text, null);
           
            //if (flag)
            //{
            //    MessageBox.Show("发送成功!");
            //}
            //else
            //{
            //    MessageBox.Show("发送失败!");
            //}
        }

        //private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
        //{
        //    Rectangle rectangle = new Rectangle(e.RowBounds.Location.X, e.RowBounds.Location.Y, dataGridView1.RowHeadersWidth - 4, e.RowBounds.Height);

        //    TextRenderer.DrawText(e.Graphics, (e.RowIndex   1).ToString(), dataGridView1.RowHeadersDefaultCellStyle.Font, rectangle,
        //    dataGridView1.RowHeadersDefaultCellStyle.ForeColor,
        //    TextFormatFlags.VerticalCenter | TextFormatFlags.Right);
        //}

    }
}

实例下载地址

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警