Sending Email In .NET Core 2.0

Consider the following written in .NET Core 2.0.

 1             SmtpClient client = new SmtpClient("smtp.exmail.qq.com", 587)
 2             {
 3                 UseDefaultCredentials = true,
 4                 Credentials = new NetworkCredential("[email protected]", "yHbgby"),
 5                 EnableSsl = true
 6             };
 7
 8             MailMessage mailMessage = new MailMessage("[email protected]", "[email protected]")
 9             {
10                 Body = "<h1>body</h1>",
11                 Subject = "subject",
12                 BodyEncoding = Encoding.UTF8,
13                 IsBodyHtml = true
14             };
15
16             client.Send(mailMessage);
17
18             client.Dispose();
19             mailMessage.Dispose(); 

For the most part, if you had code that could send email via SMTP in the full framework, it’s likely a matter of a copy and paste job to get it going in .NET Core now!

原文地址:https://www.cnblogs.com/kzwrcom/p/9777060.html

时间: 2024-11-04 04:36:46

Sending Email In .NET Core 2.0的相关文章

Send Email in .NET Core 2.0

在.NET Core 1.0 中,SMTP Client代码并没有被移植,直到.NET Core 2.0的发布.使用下面的代码: static void Main(string[] args) { SmtpClient client = new SmtpClient("smtp.163.com"); client.UseDefaultCredentials = false; client.Credentials = new NetworkCredential("bidianq

Professional C# 6 and .NET Core 1.0 - Chapter 41 ASP.NET MVC

What's In This Chapter? Features of ASP.NET MVC 6 Routing Creating Controllers Creating Views Validating User Inputs Using Filters Working with HTML and Tag Helpers Creating Data-Driven Web Applications Implementing Authentication and Authorization W

.net core 2.0学习笔记(四):迁移.net framework 工程到.net core

在迁移.net core的过程中,第一步就是要把.net framework 工程的目标框架改为.net core2.0,但是官网却没有提供转换工具,需要我们自己动手完成了..net framework 工程迁移为.net core工程大体上有两种方案: 1.创建一个.net core的工程,然后把所有的文件挪过去.这是比较笨的一种办法,如果工程比较小,还好弄.如果有几百工程,那就哭了. 2.通过编辑.csproj文件,强制把工程迁移到.net core下. 今天给大家分享的就是,如何通过修改.

Sending e-mail with Spring MVC---reference

reference from:http://www.codejava.net/frameworks/spring/sending-e-mail-with-spring-mvc Table of contents: 1.Spring framework’s support for e-mail 2.Required jar files 3.Creating e-mail sending form 4.Configuring SMTP server settings and Spring MVC 5

一起学ASP.NET Core 2.0学习笔记(二): ef core2.0 及mysql provider 、Fluent API相关配置及迁移

不得不说微软的技术迭代还是很快的,上了微软的船就得跟着她走下去,前文一起学ASP.NET Core 2.0学习笔记(一): CentOS下 .net core2 sdk nginx.supervisor.mysql环境搭建搭建好了.net core linux的相关环境,今天就来说说ef core相关的配置及迁移: 简介: Entity Framework(以下简称EF) 是微软以 ADO.NET 为基础所发展出来的对象关系对应 (O/R Mapping) 解决方案,EF Core是Entity

初识ASP.NET Core 1.0

本文将对微软下一代ASP.NET框架做个概括性介绍,方便大家进一步熟悉该框架. 在介绍ASP.NET Core 1.0之前有必要澄清一些产品名称及版本号.ASP.NET Core1.0是微软下一代ASP.NET 框架,在这之前ASP.NET版本稳定在ASP.NET  4.6,对应的.NET Framework版本为.net 4.6.1. 曾经一段时间微软将下一代ASP.NET 命名为ASP.NET 5和MVC 6,在ASP.NET 5 is dead – Introducing ASP.NET

用ASP.NET Core 1.0中实现邮件发送功能

准备将一些项目迁移到 asp.net core 先从封装类库入手,在遇到邮件发送类时发现在 asp.net core 1.0中并示提供SMTP相关类库,于是网上一搜发现了MailKit 好东西一定要试一下,何况是开源,下面是代码可实现SMTP邮件发送: using MailKit.Net.Smtp; using MailKit.Security; using MimeKit; using System.Threading.Tasks; namespace ConsoleApp1 { public

UVA 10986 Sending email(SPFA)

There are n SMTP servers connected by network cables. Each of the m cables connects two computers and has a certain latency measured in milliseconds required to send an email message. What is the shortest time required to send a message from server S

一起学ASP.NET Core 2.0学习笔记(一): CentOS下 .net core2 sdk nginx、supervisor、mysql环境搭建

作为.neter,看到.net core 2.0的正式发布,心里是有点小激动的,迫不及待的体验了一把,发现速度确实是快了很多,其中也遇到一些小问题,所以整理了一些学习笔记: 阅读目录 环境说明 安装CentOS7 安装.NET Core SDK for CentOS7 搭建ftp服务器 安装mysql 部署ASP.NET Core应用程序 配置Nginx 配置守护服务(Supervisor) 环境说明 服务器系统:CentOS 7.3 64位 相关工具:putty.Xftp 服务器软件软件:.n