我的编程空间,编程开发者的网络收藏夹
学习永远不晚

C#实现SMTP邮件附件发送功能详解

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

C#实现SMTP邮件附件发送功能详解

实践过程

效果

代码

public partial class frmSend : Form
{
    public frmSend()
    {
        InitializeComponent();
    }
    //对邮件内容进行编码
    private static string Base64Encode(string str)
    {
        return Convert.ToBase64String(Encoding.UTF8.GetBytes(str));
    }

    private void AddFile(string strFile,MailMessage message)
    {
        //为要发送的邮件创建附件信息
        Attachment myAttachment = new Attachment(strFile, System.Net.Mime.MediaTypeNames.Application.Octet);
        //为附件添加时间信息
        System.Net.Mime.ContentDisposition disposition = myAttachment.ContentDisposition;
        disposition.CreationDate = System.IO.File.GetCreationTime(strFile);
        disposition.ModificationDate = System.IO.File.GetLastWriteTime(strFile);
        disposition.ReadDate = System.IO.File.GetLastAccessTime(strFile);
        message.Attachments.Add(myAttachment);			//将创建的附件添加到邮件中
    }

    private void SendEmail(MailMessage message)
    {
        message.Subject = Base64Encode(txtSubject.Text);    //设置发送邮件的主题
        message.Body = Base64Encode(txtContent.Text);       //设置发送邮件的内容
        if (txtAttachment.Text != "")
        {
            if (txtAttachment.Text.IndexOf(",") != 0)
            {
                string[] strAttachment = txtAttachment.Text.Split(',');
                for (int i = 0; i < strAttachment.Length; i++)
                {
                    AddFile(strAttachment[i], message);
                }
            }
            else
            {
                AddFile(txtAttachment.Text, message);
            }
        }
        //实例化SmtpClient邮件发送类对象
        SmtpClient client = new SmtpClient(txtServer.Text, Convert.ToInt32(txtPort.Text));
        //设置用于验证发件人身份的凭据
        client.Credentials = new System.Net.NetworkCredential(txtName.Text, txtPwd.Text);
        //发送邮件
        client.Send(message);
    }

    private void frmSend_Load(object sender, EventArgs e)
    {
        txtServer.Text = Dns.GetHostName();
    }

    private void btnSend_Click(object sender, EventArgs e)
    {
        try
        {
            if (validateEmail(txtSend.Text))
            {
                //设置邮件发送人和接收人
                MailMessage message = null;
                if (txtTo.Text.IndexOf(",") != -1)
                {
                    string[] strEmail = txtTo.Text.Split(',');
                    string sumEmail = "";
                    for (int i = 0; i < strEmail.Length; i++)
                    {
                        sumEmail = strEmail[i];
                        message = new MailMessage(new MailAddress(txtSend.Text), new MailAddress(sumEmail));
                        SendEmail(message);
                    }
                }
                else
                {
                    message = new MailMessage(new MailAddress(txtSend.Text), new MailAddress(txtTo.Text));
                    SendEmail(message);
                }
                MessageBox.Show("发送成功");
            }
        }
        catch
        {
            MessageBox.Show("发送失败!");
        }
    }

    private void btnSelect_Click(object sender, EventArgs e)
    {
        if (openFileDialog.ShowDialog() == DialogResult.OK)
        {
            if (txtAttachment.Text == "")
            {
                txtAttachment.Text = openFileDialog.FileName;
            }
            else
            {
                txtAttachment.Text += "," + openFileDialog.FileName;
            }
        }
    }

    private void frmSend_FormClosing(object sender, FormClosingEventArgs e)
    {
        DialogResult = DialogResult.OK;
    }

    #region  验证输入为Email
    /// <summary>
    /// 验证输入为Email
    /// </summary>
    /// <param name="str"></param>
    /// <returns></returns>
    public static bool validateEmail(string str)
    {
        return Regex.IsMatch(str, @"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*");
    }
    #endregion
}
partial class frmSend
{
    /// <summary>
    /// 必需的设计器变量。
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// 清理所有正在使用的资源。
    /// </summary>
    /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
    protected override void Dispose(bool disposing)
    {
        if (disposing && (components != null))
        {
            components.Dispose();
        }
        base.Dispose(disposing);
    }

    #region Windows 窗体设计器生成的代码

    /// <summary>
    /// 设计器支持所需的方法 - 不要
    /// 使用代码编辑器修改此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {
        this.txtContent = new System.Windows.Forms.TextBox();
        this.txtSubject = new System.Windows.Forms.TextBox();
        this.txtPort = new System.Windows.Forms.TextBox();
        this.txtServer = new System.Windows.Forms.TextBox();
        this.txtPwd = new System.Windows.Forms.TextBox();
        this.txtName = new System.Windows.Forms.TextBox();
        this.txtTo = new System.Windows.Forms.TextBox();
        this.txtSend = new System.Windows.Forms.TextBox();
        this.label8 = new System.Windows.Forms.Label();
        this.label7 = new System.Windows.Forms.Label();
        this.label6 = new System.Windows.Forms.Label();
        this.label5 = new System.Windows.Forms.Label();
        this.label4 = new System.Windows.Forms.Label();
        this.label3 = new System.Windows.Forms.Label();
        this.label2 = new System.Windows.Forms.Label();
        this.label1 = new System.Windows.Forms.Label();
        this.btnSend = new System.Windows.Forms.Button();
        this.txtAttachment = new System.Windows.Forms.TextBox();
        this.label9 = new System.Windows.Forms.Label();
        this.btnSelect = new System.Windows.Forms.Button();
        this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
        this.SuspendLayout();
        // 
        // txtContent
        // 
        this.txtContent.Location = new System.Drawing.Point(23, 143);
        this.txtContent.Multiline = true;
        this.txtContent.Name = "txtContent";
        this.txtContent.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
        this.txtContent.Size = new System.Drawing.Size(519, 100);
        this.txtContent.TabIndex = 7;
        // 
        // txtSubject
        // 
        this.txtSubject.Location = new System.Drawing.Point(88, 94);
        this.txtSubject.Name = "txtSubject";
        this.txtSubject.Size = new System.Drawing.Size(186, 21);
        this.txtSubject.TabIndex = 6;
        // 
        // txtPort
        // 
        this.txtPort.Location = new System.Drawing.Point(356, 62);
        this.txtPort.Name = "txtPort";
        this.txtPort.Size = new System.Drawing.Size(186, 21);
        this.txtPort.TabIndex = 5;
        // 
        // txtServer
        // 
        this.txtServer.Location = new System.Drawing.Point(88, 63);
        this.txtServer.Name = "txtServer";
        this.txtServer.Size = new System.Drawing.Size(186, 21);
        this.txtServer.TabIndex = 4;
        // 
        // txtPwd
        // 
        this.txtPwd.Location = new System.Drawing.Point(356, 34);
        this.txtPwd.Name = "txtPwd";
        this.txtPwd.PasswordChar = '*';
        this.txtPwd.Size = new System.Drawing.Size(186, 21);
        this.txtPwd.TabIndex = 3;
        // 
        // txtName
        // 
        this.txtName.Location = new System.Drawing.Point(88, 35);
        this.txtName.Name = "txtName";
        this.txtName.Size = new System.Drawing.Size(186, 21);
        this.txtName.TabIndex = 2;
        // 
        // txtTo
        // 
        this.txtTo.Location = new System.Drawing.Point(356, 6);
        this.txtTo.Name = "txtTo";
        this.txtTo.Size = new System.Drawing.Size(186, 21);
        this.txtTo.TabIndex = 1;
        // 
        // txtSend
        // 
        this.txtSend.Location = new System.Drawing.Point(88, 6);
        this.txtSend.Name = "txtSend";
        this.txtSend.Size = new System.Drawing.Size(186, 21);
        this.txtSend.TabIndex = 0;
        // 
        // label8
        // 
        this.label8.AutoSize = true;
        this.label8.Location = new System.Drawing.Point(15, 121);
        this.label8.Name = "label8";
        this.label8.Size = new System.Drawing.Size(65, 12);
        this.label8.TabIndex = 12;
        this.label8.Text = "邮件内容:";
        // 
        // label7
        // 
        this.label7.AutoSize = true;
        this.label7.Location = new System.Drawing.Point(15, 93);
        this.label7.Name = "label7";
        this.label7.Size = new System.Drawing.Size(65, 12);
        this.label7.TabIndex = 11;
        this.label7.Text = "邮件主题:";
        // 
        // label6
        // 
        this.label6.AutoSize = true;
        this.label6.Location = new System.Drawing.Point(290, 65);
        this.label6.Name = "label6";
        this.label6.Size = new System.Drawing.Size(53, 12);
        this.label6.TabIndex = 14;
        this.label6.Text = "端口号:";
        // 
        // label5
        // 
        this.label5.AutoSize = true;
        this.label5.Location = new System.Drawing.Point(21, 65);
        this.label5.Name = "label5";
        this.label5.Size = new System.Drawing.Size(53, 12);
        this.label5.TabIndex = 17;
        this.label5.Text = "服务器:";
        // 
        // label4
        // 
        this.label4.AutoSize = true;
        this.label4.Location = new System.Drawing.Point(278, 37);
        this.label4.Name = "label4";
        this.label4.Size = new System.Drawing.Size(77, 12);
        this.label4.TabIndex = 16;
        this.label4.Text = "发件人密码:";
        // 
        // label3
        // 
        this.label3.AutoSize = true;
        this.label3.Location = new System.Drawing.Point(9, 37);
        this.label3.Name = "label3";
        this.label3.Size = new System.Drawing.Size(77, 12);
        this.label3.TabIndex = 15;
        this.label3.Text = "发件人名称:";
        // 
        // label2
        // 
        this.label2.AutoSize = true;
        this.label2.Location = new System.Drawing.Point(290, 9);
        this.label2.Name = "label2";
        this.label2.Size = new System.Drawing.Size(53, 12);
        this.label2.TabIndex = 13;
        this.label2.Text = "收件人:";
        // 
        // label1
        // 
        this.label1.AutoSize = true;
        this.label1.Location = new System.Drawing.Point(21, 9);
        this.label1.Name = "label1";
        this.label1.Size = new System.Drawing.Size(53, 12);
        this.label1.TabIndex = 18;
        this.label1.Text = "发件人:";
        // 
        // btnSend
        // 
        this.btnSend.Location = new System.Drawing.Point(221, 280);
        this.btnSend.Name = "btnSend";
        this.btnSend.Size = new System.Drawing.Size(116, 23);
        this.btnSend.TabIndex = 9;
        this.btnSend.Text = "发送";
        this.btnSend.UseVisualStyleBackColor = true;
        this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
        // 
        // txtAttachment
        // 
        this.txtAttachment.Location = new System.Drawing.Point(62, 250);
        this.txtAttachment.Name = "txtAttachment";
        this.txtAttachment.Size = new System.Drawing.Size(437, 21);
        this.txtAttachment.TabIndex = 28;
        // 
        // label9
        // 
        this.label9.AutoSize = true;
        this.label9.Location = new System.Drawing.Point(15, 253);
        this.label9.Name = "label9";
        this.label9.Size = new System.Drawing.Size(41, 12);
        this.label9.TabIndex = 27;
        this.label9.Text = "附件:";
        // 
        // btnSelect
        // 
        this.btnSelect.Location = new System.Drawing.Point(505, 249);
        this.btnSelect.Name = "btnSelect";
        this.btnSelect.Size = new System.Drawing.Size(37, 23);
        this.btnSelect.TabIndex = 8;
        this.btnSelect.Text = "选择";
        this.btnSelect.UseVisualStyleBackColor = true;
        this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
        // 
        // openFileDialog
        // 
        this.openFileDialog.FileName = "openFileDialog1";
        // 
        // frmSend
        // 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(551, 313);
        this.Controls.Add(this.btnSelect);
        this.Controls.Add(this.txtAttachment);
        this.Controls.Add(this.label9);
        this.Controls.Add(this.txtContent);
        this.Controls.Add(this.txtSubject);
        this.Controls.Add(this.txtPort);
        this.Controls.Add(this.txtServer);
        this.Controls.Add(this.txtPwd);
        this.Controls.Add(this.txtName);
        this.Controls.Add(this.txtTo);
        this.Controls.Add(this.txtSend);
        this.Controls.Add(this.label8);
        this.Controls.Add(this.label7);
        this.Controls.Add(this.label6);
        this.Controls.Add(this.label5);
        this.Controls.Add(this.label4);
        this.Controls.Add(this.label3);
        this.Controls.Add(this.label2);
        this.Controls.Add(this.label1);
        this.Controls.Add(this.btnSend);
        this.Name = "frmSend";
        this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
        this.Text = "使用SMTP服务发送带附件的邮件";
        this.Load += new System.EventHandler(this.frmSend_Load);
        this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmSend_FormClosing);
        this.ResumeLayout(false);
        this.PerformLayout();

    }

    #endregion

    private System.Windows.Forms.TextBox txtContent;
    private System.Windows.Forms.TextBox txtSubject;
    private System.Windows.Forms.TextBox txtPort;
    private System.Windows.Forms.TextBox txtServer;
    private System.Windows.Forms.TextBox txtPwd;
    private System.Windows.Forms.TextBox txtName;
    private System.Windows.Forms.TextBox txtTo;
    private System.Windows.Forms.TextBox txtSend;
    private System.Windows.Forms.Label label8;
    private System.Windows.Forms.Label label7;
    private System.Windows.Forms.Label label6;
    private System.Windows.Forms.Label label5;
    private System.Windows.Forms.Label label4;
    private System.Windows.Forms.Label label3;
    private System.Windows.Forms.Label label2;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.Button btnSend;
    private System.Windows.Forms.TextBox txtAttachment;
    private System.Windows.Forms.Label label9;
    private System.Windows.Forms.Button btnSelect;
    private System.Windows.Forms.OpenFileDialog openFileDialog;
}

到此这篇关于C#实现SMTP邮件附件发送功能详解的文章就介绍到这了,更多相关C# SMTP邮件附件发送内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

C#实现SMTP邮件附件发送功能详解

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

C#实现SMTP邮件附件发送功能详解

这篇文章主要为大家详细介绍了如何利用C#实现SMTP邮件附件发送的功能,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以跟随小编一起了解一下
2022-12-28

python实现SMTP邮件发送功能

一直想着给框架添加邮件发送功能、所以整理下python下邮件发送功能 首先python是支持邮件的发送、内置smtp库、支持发送纯文本、HTML及添加附件的邮件。之后是邮箱、像163、qq、新浪等邮箱默认关闭SMTP服务,需要我们手动打开,
2022-06-04

python实现发送邮件及附件功能

今天给大伙说说python发送邮件,官方的多余的话自己去百度好了,还有一大堆文档说实话不到万不得已的时候一般人都不会去看,回归主题: 本人是mac如果没有按照依赖模块的请按照下面的截图安装导入模块如果没有错误,表示已经安装成功。 Pytho
2022-06-04

Android实现带附件的邮件发送功能

本文实例讲解了基于基于JMail实现Android邮件发送功能,分享给大家供大家参考,具体内容如下 在android上发送邮件方式: 第一种:借助GMail APP客户端,缺点是必须使用GMail帐号,有一点是比较方便,不需要写很多代码,但
2022-06-06

Python实现SMTP发送邮件详细教程

简介 Python发送邮件的教程本人在网站搜索的时候搜索出来了一大堆,但是都是说了一大堆原理然后就推出了实现代码,我测试用给出的代码进行发送邮件时都不成功,后面找了很久才找到原因,这都是没有一个详细的环境调试导致,所以今天特出一个详细的教程
2022-06-04

Java如何实现带附件的邮件发送功能

这篇文章主要讲解了Java如何实现带附件的邮件发送功能,内容清晰明了,对此有兴趣的小伙伴可以学习一下,相信大家阅读完之后会有帮助。1、需要导入mail.jar、activation.jar这两个邮件发送的jar包,可在网上搜索并下载2、需要
2023-05-31

Golang如何实现smtp邮件发送

本文小编为大家详细介绍“Golang如何实现smtp邮件发送”,内容详细,步骤清晰,细节处理妥当,希望这篇“Golang如何实现smtp邮件发送”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。使用函数SendMai
2023-07-05

Node.js实现发送邮件功能

本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下var nodemailer = require("nodemailer"); var mailTitle='http://handsupowo.pl/:R
2022-06-04

Spring实现邮件发送功能

前言:以前都是直接用Java自带的邮件工具发送邮件,现在Spring帮我们做了封装,提供了更好用更简单的发送邮件工具JavaMailSender,关于邮件服务器的设置就不在这里说了,直接去QQ邮箱设置下就好,下面看下主要的步骤: 步骤一、添
2023-05-30

Python实现邮件发送功能的示例详解

Python对SMTP支持有smtplib和email两个模块,email负责构造邮件,smtplib负责发送邮件。本文将以qq邮箱为例,实现自己给自己发送邮件的功能,感兴趣的可以了解一下
2022-11-13

C语言如何实现发送邮件功能

这篇文章主要介绍了C语言如何实现发送邮件功能的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C语言如何实现发送邮件功能文章都会有所收获,下面我们一起来看看吧。首先需要知道发送邮件的服务器IP地址和端口,我这里使用
2023-07-02

C#实现SMTP服务发送邮件的示例代码

这篇文章主要为大家详细介绍了如何利用C#实现SMTP服务发送邮件的功能,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以跟随小编一起了解一下
2022-12-27

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录