• 大小: 0.05M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 邮件  SMTP  

资源简介

C#调用SMTP发送文本内容,详见示例图

资源截图

代码片段和文件信息

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 System.Net;
using System.Net.Mail;
using System.Text.Regularexpressions;

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

        private void SendEmail(MailMessage message)
        {
            message.Subject = base64Encode(txtSubject.Text);    //设置发送邮件的主题
            message.Body = base64Encode(txtCon

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-01-24 11:22  调用SMTP发送文本内容\
     目录           0  2013-01-24 11:22  调用SMTP发送文本内容\SEmailWithoutAtt\
     文件         938  2009-02-10 16:00  调用SMTP发送文本内容\SEmailWithoutAtt.sln
     文件       30208  2009-02-10 16:04  调用SMTP发送文本内容\SEmailWithoutAtt.suo
     目录           0  2013-01-24 11:22  调用SMTP发送文本内容\SEmailWithoutAtt\bin\
     目录           0  2013-01-24 11:22  调用SMTP发送文本内容\SEmailWithoutAtt\bin\Debug\
     文件       12288  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\bin\Debug\SEmailWithoutAtt.exe
     文件       24064  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\bin\Debug\SEmailWithoutAtt.pdb
     文件       14328  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\bin\Debug\SEmailWithoutAtt.vshost.exe
     文件        3120  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\frmSend.cs
     文件       10351  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\frmSend.designer.cs
     文件        5814  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\frmSend.resx
     目录           0  2013-01-24 11:22  调用SMTP发送文本内容\SEmailWithoutAtt\obj\
     目录           0  2013-01-24 11:22  调用SMTP发送文本内容\SEmailWithoutAtt\obj\Debug\
     文件         909  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\obj\Debug\SEmailWithoutAtt.csproj.FileListAbsolute.txt
     文件         849  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\obj\Debug\SEmailWithoutAtt.csproj.GenerateResource.Cache
     文件       12288  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\obj\Debug\SEmailWithoutAtt.exe
     文件         180  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\obj\Debug\SEmailWithoutAtt.frmSend.resources
     文件       24064  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\obj\Debug\SEmailWithoutAtt.pdb
     文件         180  2009-02-10 16:03  调用SMTP发送文本内容\SEmailWithoutAtt\obj\Debug\SEmailWithoutAtt.Properties.Resources.resources
     目录           0  2012-05-02 09:56  调用SMTP发送文本内容\SEmailWithoutAtt\obj\Debug\TempPE\
     文件         499  2009-02-10 16:02  调用SMTP发送文本内容\SEmailWithoutAtt\Program.cs
     目录           0  2013-01-24 11:22  调用SMTP发送文本内容\SEmailWithoutAtt\Properties\
     文件        1388  2009-02-10 16:00  调用SMTP发送文本内容\SEmailWithoutAtt\Properties\AssemblyInfo.cs
     文件        2882  2010-08-18 17:51  调用SMTP发送文本内容\SEmailWithoutAtt\Properties\Resources.Designer.cs
     文件        5612  2009-02-10 16:00  调用SMTP发送文本内容\SEmailWithoutAtt\Properties\Resources.resx
     文件        1101  2009-02-10 16:00  调用SMTP发送文本内容\SEmailWithoutAtt\Properties\Settings.Designer.cs
     文件         249  2009-02-10 16:00  调用SMTP发送文本内容\SEmailWithoutAtt\Properties\Settings.settings
     文件        3788  2009-02-10 16:01  调用SMTP发送文本内容\SEmailWithoutAtt\SEmailWithoutAtt.csproj

评论

共有 条评论