FluentEmail icon indicating copy to clipboard operation
FluentEmail copied to clipboard

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

Results 138 FluentEmail issues
Sort by recently updated
recently updated
newest added

Hello, I have been trying to perform a sign up email and while I am getting a success, I am not getting the email. Here is my source code: ```...

I have .NET Core 2.1.2 application with IHostedService for sending email notifications. I register an email sending stuff: ``` public class NotificationsFactory { public static void Register(IServiceCollection services, IAppSettings appSettings)...

My `.csproj` has the following references: ``` ``` I setup the FluentEmail DI like so (from Startup.cs): ``` services .AddFluentEmail(defaultFromEmail, defaultFromName) .AddRazorRenderer(typeof(Program)) .AddSmtpSender(smtpHost, smtpPort); ``` And then when I call...

When using on MacOS on dotnetcore, SaveToSender doesn't find save to the directory provided because it has a windows specific directory delimiter '\' see https://github.com/lukencode/FluentEmail/blob/master/src/FluentEmail.Core/Defaults/SaveToDiskSender.cs#L35 Example usage: `new SaveToDiskSender(Directory.GetCurrentDirectory())` (used...

How to render HTML in the CSHTML like I asked in here: Render Html code from a property using FluentMail in C# (https://stackoverflow.com/questions/59801013/render-html-code-from-a-property-using-fluentmail-in-c-sharp)

Hello, I have the following packages installed: ``` ``` RazorLight is version alpha-3: ``` ``` When trying to send an e-mail with a template like this one: ``` public async...

Replicated

I have added ElasticEmailSender for ElasticEmail service.

`To(string emailAddress)` supports multiple addresses (allows multiple splitting on ';'). `CC` should support this too (same for `BCC`).

Send grid has it's own templates system. I've added support

.NET Core 2.2 FluentMail.Mailgun 2.5.3 on AWS ECS DockerFile : FROM microsoft/dotnet:2.2-aspnetcore-runtime Publish: dotnet publish XXX_API.csproj -c Release ` Error:System.Net.Http.HttpRequestException: Too many open files in system ---> System.Net.Sockets.SocketException: Too many...