FluentEmail - 适用于 .NET 和 .NET Core 的邮件发送库

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FluentEmail - 适用于 .NET 和 .NET Core 的邮件发送库相关的知识,希望对你有一定的参考价值。

简介

FluentEmail - 适用于 .NET 和 .NET Core 的邮件发送库

从 .NET 和 .NET Core 发送电子邮件的最简单方法。将 Razor 用于电子邮件模板并使用 SendGrid、MailGun、SMTP 等进行发送

Nuget包

•FluentEmail.Core - 域模型•FluentEmail.Smtp - 通过 SMTP 服务器发送电子邮件•FluentEmail.Razor - 使用 Razor 模板生成电子邮件•FluentEmail.Liquid - 使用Liquid 模板生成电子邮件•FluentEmail.Mailgun - 通过 MailGun 的 REST API 发送电子邮件•FluentEmail.SendGrid - 通过 SendGrid API 发送电子邮件•FluentEmail.Mailtrap - 向 Mailtrap 发送电子邮件。使用FluentEmail.Smtp进行传递•FluentEmail.MailKit - 使用MailKit电子邮件库发送电子邮件

用法

基本用法

var email = await Email
    .From("john@email.com")
    .To("bob@email.com", "bob")
    .Subject("hows it going bob")
    .Body("yo bob, long time no see!")
    .SendAsync();

依赖注入

public void ConfigureServices(IServiceCollection services)

    services
        .AddFluentEmail("fromemail@test.test")
        .AddRazorRenderer()
        .AddSmtpSender("localhost", 25);
public class EmailService 

   private IFluentEmail _fluentEmail;

   public EmailService(IFluentEmail fluentEmail) 
     _fluentEmail = fluentEmail;
   

   public async Task Send() 
     await _fluentEmail.To("hellO@gmail.com")
     .Body("The body").SendAsync();
   

使用 Razor 模板

Email.DefaultRenderer = new RazorRenderer();

var template = "Dear @Model.Name, You are totally @Model.Compliment.";

var email = Email
    .From("bob@hotmail.com")
    .To("somedude@gmail.com")
    .Subject("woo nuget")
    .UsingTemplate(template, new  Name = "Luke", Compliment = "Awesome" );

使用 Liquid 模板

var fileProvider = new PhysicalFileProvider(Path.Combine(someRootPath, "EmailTemplates"));
var options = new LiquidRendererOptions

    FileProvider = fileProvider
;

Email.DefaultRenderer = new LiquidRenderer(Options.Create(options));

// template which utilizes layout
var template = @"
% layout '_layout.liquid' %
Dear  Name , You are totally  Compliment .";

var email = Email
    .From("bob@hotmail.com")
    .To("somedude@gmail.com")
    .Subject("woo nuget")
    .UsingTemplate(template, new ViewModel  Name = "Luke", Compliment = "Awesome" );

发送电子邮件

Email.DefaultSender = new SmtpSender();

//send normally
email.Send();

//send asynchronously
await email.SendAsync();

Github地址

https://github.com/lukencode/FluentEmail

最后大家如果喜欢我的文章,还麻烦给个关注并点个赞, 希望net生态圈越来越好!

以上是关于FluentEmail - 适用于 .NET 和 .NET Core 的邮件发送库的主要内容,如果未能解决你的问题,请参考以下文章

Web 请求失败,但仅适用于 localhost 和使用 System.Net.HttpWebRequest

C# 6.0 是不是适用于 .NET 4.0?

NHibernate 是不是与 Hibernate 互操作?如果没有,是不是有适用于 Java 和 .NET 的框架?

可移植类库是不是适用于 .net 3.5?

net.core 和 angular4 应用程序的 Cors 问题 - 适用于 azurewebsites.net 域而不是自定义

适用于 VB6 和 .net 应用程序的最佳 IPC