Skip to content

Instantly share code, notes, and snippets.

@lukencode
Created July 2, 2018 10:25
Show Gist options
  • Save lukencode/dc590c8cd13420265566160efa21666c to your computer and use it in GitHub Desktop.
Save lukencode/dc590c8cd13420265566160efa21666c to your computer and use it in GitHub Desktop.
FluentEmail dependency injection
public void ConfigureServices(IServiceCollection services)
{
services
.AddFluentEmail("[email protected]")
.AddRazorRenderer()
.AddSmtpSender("localhost", 25);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment