Skip to content

Repository files navigation

alt text

FluentEmail - All in one email sender for .NET and .NET Core

The easiest way to send email from .NET and .NET Core. Use Razor for email templates and send using SendGrid, MailGun, SMTP and more.

Maintained by Luke Lowrey - follow me on twitter @lukencode for updates. See my blog for a detailed guide A complete guide to send email in .NET

Nuget Packages

Core Library

  • FluentEmail.Core - Just the domain model. Includes very basic defaults, but is also included with every other package here.
  • FluentEmail.Smtp - Send email via SMTP server.

Renderers

Mail Provider Integrations

Basic Usage

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

Dependency Injection

Configure FluentEmail in startup.cs with these helper methods. This will inject IFluentEmail (send a single email) and IFluentEmailFactory (used to send multiple emails in a single context) with the ISender and ITemplateRenderer configured using AddRazorRenderer(), AddSmtpSender() or other packages.

publicvoidConfigureServices(IServiceCollectionservices){services.AddFluentEmail("fromemail@test.test").AddRazorRenderer().AddSmtpSender("localhost",25);}

Example to take a dependency on IFluentEmail:

publicclassEmailService{privateIFluentEmail_fluentEmail;publicEmailService(IFluentEmailfluentEmail){_fluentEmail=fluentEmail;}publicasyncTaskSend(){await_fluentEmail.To("hellO@gmail.com").Body("The body").SendAsync();}}

Using a Razor template

// Using Razor templating package (or set using AddRazorRenderer in services)Email.DefaultRenderer=newRazorRenderer();vartemplate="Dear @Model.Name, You are totally @Model.Compliment.";varemail=Email.From("bob@hotmail.com").To("somedude@gmail.com").Subject("woo nuget").UsingTemplate(template,new{Name="Luke",Compliment="Awesome"});

Using a Liquid template

Liquid templates are a more secure option for Razor templates as they run in more restricted environment. While Razor templates have access to whole power of CLR functionality like file access, they also are more insecure if templates come from untrusted source. Liquid templates also have the benefit of being faster to parse initially as they don't need heavy compilation step like Razor templates do.

Model properties are exposed directly as properties in Liquid templates so they also become more compact.

See Fluid samples for more examples.

// Using Liquid templating package (or set using AddLiquidRenderer in services)// file provider is used to resolve layout files if they are in usevarfileProvider=newPhysicalFileProvider(Path.Combine(someRootPath,"EmailTemplates"));varoptions=newLiquidRendererOptions{FileProvider=fileProvider};Email.DefaultRenderer=newLiquidRenderer(Options.Create(options));// template which utilizes layoutvartemplate=@"{% layout '_layout.liquid' %}Dear {{ Name }}, You are totally {{ Compliment }}.";varemail=Email.From("bob@hotmail.com").To("somedude@gmail.com").Subject("woo nuget").UsingTemplate(template,newViewModel{Name="Luke",Compliment="Awesome"});

Sending Emails

// Using Smtp Sender package (or set using AddSmtpSender in services)Email.DefaultSender=newSmtpSender();//send normallyemail.Send();//send asynchronouslyawaitemail.SendAsync();

Template File from Disk

varemail=Email.From("bob@hotmail.com").To("somedude@gmail.com").Subject("woo nuget").UsingTemplateFromFile($"{Directory.GetCurrentDirectory()}/Mytemplate.cshtml",new{Name="Rad Dude"});

Embedded Template File

Note for .NET Core 2 users: You'll need to add the following line to the project containing any embedded razor views. See this issue for more details.

<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
varemail=newEmail("bob@hotmail.com").To("benwholikesbeer@twitter.com").Subject("Hey cool name!").UsingTemplateFromEmbedded("Example.Project.Namespace.template-name.cshtml",new{Name="Bob"},TypeFromYourEmbeddedAssembly.GetType().GetTypeInfo().Assembly);

About

All in one email sender for .NET. Supports popular senders (SendGrid, MailGun, etc) and Razor templates.

Topics

Resources

Stars

3.2k stars

Watchers

80 watching

Forks

Used by

Contributors

Languages