postmark-dotnet
postmark-dotnet copied to clipboard
A .NET library for the Postmark API
In PostmarkInboundWebhookMessage class, there isn't a property for RawEmail key.
The return type for the GetInboundMessageDetailsAsync method in both the PostmarkClient class and LegacyClientExtensions class has been updated. It has been changed from InboundMessageDetail to PostmarkInboundMessage to use the newer...
It very hard to mock the PostmarkClient at the moment because it does not implement an interface nor are it's members virtual. This is not allowed for example ```cs var...
Apologies if I have just missed it, but is there an active changelog for this API? The Github "releases" information stops at April 2021. I see you have just moved...
In the following screenshots "TemplateModel" is a Dictionary With previous Versions (Tested with 4.7.12)  Correctly converted by "JsonContent" in the "PostmarkClientBase.cs" class  With 4.8.0 every value of the...
The client.SendMessageAsync method returns `Status enum ` ``` Unknown = -1, // 0xFFFFFFFF Success = 0, UserError = 1, ServerError = 2, ``` but it also throws exception `PostmarkValidationException`. So...
When using a content ID (CID) on an attachment (especially for images) it is important the attachment's content-disposition_value be set to "inline" and not "attachment". When set to attachment (as...
Is it better to create a new postmark client for each controller, or should we be using a Singleton or something like that and create only one client? For reference,...
When I send a MailMessage that has a ReplyTo set I get what I expect: "Reply-To: TentantName [email protected]" in the raw source of the message: When I send a MailMessage...