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

Add Disposition information and ContentId in sendGrid ConvertAttachement. SendGrid Documentation for Disposition content values : [Here](https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html)

Hi there, i'm trying to use a master layout page in my referenced templatefile. Unfortunately i get following Exception: "RenderBody was not called" ![unbenannt](https://user-images.githubusercontent.com/38925535/40438095-b0393448-5ea6-11e8-92a8-ad44c59c721b.PNG) ![unbenannt1](https://user-images.githubusercontent.com/38925535/40438096-b059afa2-5ea6-11e8-8bb6-f683e6eee26d.PNG) ![unbenannt3](https://user-images.githubusercontent.com/38925535/40438097-b07c1aba-5ea6-11e8-8c48-e677f2aacc36.PNG) ![unbenannt4](https://user-images.githubusercontent.com/38925535/40438098-b09af61a-5ea6-11e8-8846-150f53065cc7.PNG)

Trying to send an email using a template. Email.DefaultRenderer = new RazorRenderer(); data = new { FormReference = "7AM2TOVMSO", ClientReference = "E91XPU0UDC" } var email = Email.From("[email protected],"xxx name") .To(recipient) .Subject("form...

I am using .NET Core 2 and added the following to my csproj file ``` false true ``` I have done the following 1. Created a model 2. Created a...

I have the following crash: ``` fail: Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware[1] An unhandled exception has occurred while executing the request. System.Net.Http.HttpRequestException: Resource temporarily unavailable ---> System.Net.Sockets.SocketException: Resource temporarily unavailable at System.Net.Http.ConnectHelper.ConnectAsync(String host, Int32...

Hi, I cannot find any reference for this scenario in your Documentation. My website name **Project.Web** compiles to **Project.Web.dll** and **Project.Web.Views.dll**. I have got a standard folder structure and in...

Hi I am rewriting my email notification service using FluentEmail and I have an ICal event in my email. Here is my original code: ```C# private MailMessage CreateICalEventMessage(string email, string...

We should ignore null strings in the name property. At the moment a name.Trim() call causes an exception.

I have a server with a self-signed certificate (my email client consider this a invalid certificate, and FluentEmail too). How can I send a email ignoring the invalid certificate? tried...