using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Mail;
using System.Net;
using System.Threading;
using System.IO;
using System.Security.Cryptography; namespace ConsoleApp348
{
class Program
{
static string logFullPath = Directory.GetCurrentDirectory() + "\\" + DateTime.Now.ToString("yyyyMMdd") + ".txt";
static void Main(string[] args)
{
Timer emailTimer = new Timer(SendMailCallBack, null, , );
Console.ReadLine();
} private static void SendMailCallBack(object state)
{
string fromMail = "fromMail";
string fromMailPwd = "fromMailPwd";
string toMail = "toMail";
MailExample(fromMail, fromMailPwd, toMail);
} static void MailExample(string fromEmail, string fromEmailPwd, string toEmail)
{
try
{
using (SmtpClient smtpClient = new SmtpClient())
{
smtpClient.Host = "smtp.163.com";
smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;
smtpClient.UseDefaultCredentials = false;
smtpClient.Credentials = new System.Net.NetworkCredential(fromEmail, fromEmailPwd);
using (MailMessage mail = new MailMessage())
{
mail.BodyEncoding = UTF8Encoding.UTF8;
mail.DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure;
mail.From = new MailAddress(fromEmail);
mail.To.Add(new MailAddress(toEmail));
mail.Subject = $"This is the new test.Now is {DateTime.Now.ToString("mmssffff")}";
mail.Body = $"This is the mail body,And now is {DateTime.Now.ToString("yyyyMMddHHmmssffff")}";
smtpClient.SendAsync(mail, $"Frommail:{fromEmail},ToMail:{toEmail},send email successfully!");
smtpClient.SendCompleted += SmtpClient_SendCompleted;
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex.StackTrace);
LogMessage(ex.StackTrace);
}
} private static void SmtpClient_SendCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
{
Console.WriteLine(e.UserState);
LogMessage(e.UserState.ToString());
} static void LogMessage(string msg)
{
lock(logFullPath)
{
using (StreamWriter logWriterStream = new StreamWriter(logFullPath, true, UTF8Encoding.UTF8))
{
logWriterStream.WriteLine($"Log message :{msg},now is {DateTime.Now.ToString("yyyyMMddHHmmssffff")}");
}
}
}
}
}

异步:public void SendAsync(MailMessage message, object userToken);

Sends the specified e-mail message to an SMTP server for delivery. This method  does not block the calling thread and allows the caller to pass an object to  the method that is invoked when the operation completes.

最新文章

  1. c语言数据结构之 插入排序
  2. poj3180 强连通
  3. python AES 双向对称加密解密
  4. Vi/Vim查找替换使用方法
  5. poj 2349(最小生成树应用)
  6. JavaScript学习——内置属性
  7. PHP 实现短域名互转
  8. JQuery EasyUI 对话框的使用方法
  9. AD 10 直接出 BOM 的漂亮效果
  10. 基于visual Studio2013解决C语言竞赛题之1011对称
  11. SugarSync网盘之XML解析
  12. hiberation4 获取session
  13. 如何让自己的Dev C++用上C++11,c++14标准
  14. xhprof 安装详解
  15. LocalStorage的一些使用
  16. .NET 获取Get方式URL中的参数键值
  17. eval解析json字符串
  18. Linux学习-1进程
  19. 获取CPU和内存的使用率
  20. Mbatis错误信息整理

热门文章

  1. serf 中去中心化系统的原理和实现
  2. asp.net单一登录
  3. JS基础语法---分支语句之:if语句,if-else语句,if-ever if语句
  4. react-native 标题随页面滚动显示和隐藏
  5. C和C++中的struct的不同
  6. [收藏]Dubbo官方资料
  7. 实时数据推送webSocket
  8. 14.Java基础_函数/函数重载/参数传递
  9. 线段树set,add基础
  10. c# 第30节 类字段与属性