FluentEmail
FluentEmail copied to clipboard
All in one email sender for .NET. Supports popular senders (SendGrid, MailGun, etc) and Razor templates.
Attempting to add FluentEmail.Razor to a .NET Framework 4.6.1 project using nuget results in the following error: > Unable to find a version of 'RazorLight' that is compatible with 'FluentEmail.Razor...
I am installing with the following into a Web API and MVC project: Install-Package SendGrid -version 9.2.0 Install-Package FluentEmail.Core -version 2.1.0 Install-Package FluentEmail.Smtp -version 2.0.4 Install-Package FluentEmail.Mailgun -version 2.1.0 Install-Package...
I am using a SMTP mock (node fake-smtp-server) to test FluentEmail.Core with SMTP sender. I am using the config file to define the SMTP configuration. My intention is to not...
For images inside the razor template I used to create an attachment, get it's cid and set the cid as the image src. This is usually implemented as a method...
Tried (without Razor) to build mails with inline images, while using HTML template from file. It seems there is no built-in functionality?
Hi! Please add System.Text.Encoding parameter to UsingTemplateFromFile to read file content in appropriate encoding.
Given a view that specifies a layout: ``` @{ Layout = "_Layout"; } ``` When I call: ``` UsingTemplateFromFile($@"{Directory.GetCurrentDirectory()}\EmailTemplates\Verify.cshtml", viewModel); ``` I get an error that the layout cannot be...
I am using FluentEmail in Asp.Net project on **.netframework 4.8**, when I want to use SendAsync method I get this error: #### "The server committed a protocol violation The server...
I have a business case for capturing the rendered email body. Is that possible with FluentEmail? I am using Razor templates if that makes any difference.
Hello, I've been using the v3.0.0 of `FluentEmail.Core` along with `FluentEmail.Liquid` with no problems for the past year or so, however, I have upgraded NSwag to the latest version and...