FluentEmail
FluentEmail copied to clipboard
All in one email sender for .NET. Supports popular senders (SendGrid, MailGun, etc) and Razor templates.
I have upgraded MailKit to v3.0.0 and I when I send email get this exception: System.MissingMethodException: 'Method not found: 'System.Threading.Tasks.Task MailKit.MailTransport.SendAsync(MimeKit.MimeMessage, System.Threading.CancellationToken, MailKit.ITransferProgress)'.' When I back to MailKit v2.15.0, everything...
Currently, it is impossible to use inline attachments with SendGrid, because the SendGridSender ignores the `IsInline` & `ContentId` properties on attachments. So, this simple change is to allow sending inline...
When we upgraded to the latest release, our emails stopped sending via SendGrid with the following error in the response: ``` "{\r\n \"message\": \"The categories array, when used, must have...
When sending multiple emails, the first time it calls Create() it works great, but then subsequent calls fail, saying the IServiceProvider has been disposed. ``` IFluentEmail fluentEmail = _fluentEmailFactory.Create(); var...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
I am trying to implement a feature that schedules email deliveries. I was wondering if there is any way of serializing a FluentEmail for storing in a json storage to...
Just a forward option to mailkit, i need it in one of my projects.
`FluentEmail.Liquid/3.0.2` nuget package conflicts with `Elsa/2.7.0` package (both use Fluid library). As soon as I'm referencing Elsa package in a project, FluentEmail is failing ``` System.Runtime.InteropServices.ExternalException (0xFFFFFFFF): System.TypeLoadException: Could not...
The version of Fluid.Core is wrong in the tag 3.0.2 for the Fluid Renderer. Can you please release what's in master so it resolves our issue? Thanks - Zev
This PR contains two changes regarding MailKitSender: * Use local MessageId as SendResponse.MessageId * Use remotely generated MessageId when using Amazon SES as SendResponse.MessageId ## Explanation ### Returning local MessageId...