博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.NET 发送邮件
阅读量:6203 次
发布时间:2019-06-21

本文共 2044 字,大约阅读时间需要 6 分钟。

配置文件中加入

MailMessage msg = new MailMessage();      msg.From = new MailAddress("475504513@qq.com");      msg.To.Add(new MailAddress("475504513@qq.com"));      msg.Subject = "测试Subject";      msg.Body = "测试Body";      msg.IsBodyHtml = false;      SmtpClient smtp = new SmtpClient();      smtp.Send(msg);

代码中配置信息

public static string CreateTimeoutTestMessage(string server)        {            string Success = "发送成功";            try            {                string _to = "1035092449@qq.com";                string _from = "young-20@163.com";                string _subject = "Using the new SMTP client.";                string _body = @"Using this new feature, you can send an e-mail message from an application very easily.";                MailMessage message = new MailMessage();                message.From = new MailAddress(_from);                //可以利用MailMessage.To.Add方法增加要发送的邮件地址                message .To .Add (new MailAddress ("652105072@qq.com"));                message.To.Add(new MailAddress(_to));                message.Subject = _subject;                message.Body = _body;                //添加附件                Attachment a = new Attachment(@"C:/Users/Administrator/Desktop/smtpclient.rar");                message.Attachments.Add(a);                //设置邮箱的地址或IP                SmtpClient client = new SmtpClient(server);                //设置邮箱端口,pop3端口:110, smtp端口是:25                 client.Port = 25;                                //设置超时时间                client.Timeout = 9999;                                //要输入邮箱用户名与密码                                client.Credentials = new NetworkCredential("young-20@163.com", "******");                client.Send(message);            }            catch (Exception ex)            {                Success = ex.ToString();            }            return Success;        }

调用方法CreateTimeoutTestMessage("smtp.qq.com"),邮箱需要开启SMTP功能,QQ在设置,账户下启用

 

转载于:https://www.cnblogs.com/FlyCat/archive/2012/03/17/2580001.html

你可能感兴趣的文章
Laravel 5.1用户认证
查看>>
重磅发布:阿里 OpenJDK终于开源啦! 将长期支持版本 Dragonwell
查看>>
MacOS必备软件
查看>>
微信小程序的联系人列表
查看>>
node.js笔记
查看>>
小米平板IOS主题
查看>>
js三大系列之一offset
查看>>
夯实基础系列二:网络知识总结
查看>>
Shrio(Simple,Java,Security)
查看>>
Android多线程之IntentService
查看>>
站在区块链风口上的90后
查看>>
CSS中behavior使用
查看>>
卸载金蝶kis记账王的方法
查看>>
Android 去掉新版ADT创建项目时出现的appcompat_v7
查看>>
有关nginx upstream的几种配置方式
查看>>
【赚取智能手环】PHP开发学习门户有奖答题活动火热进行中!
查看>>
tableview的编辑模式
查看>>
Putty、Xshell密钥验证登录Linux
查看>>
MinGW g++ 编译带静态变量的类时的问题,求高手解释一下!
查看>>
Android:tweenAnimation
查看>>