C # Mandrill-dotnet SendMessageTemplate Serialization Error for Publish

Im using Mandrill-dotnet 2.4.1.0 to send transactional emails from my C # application. Each time I get an error: "Serialization error for publishing: messages / send -template.json.

When checking Mandrill, an email was sent that I tried to send, so this may be a problem with the data in the response. Sometimes I see that there is a lag during an error, but I cannot say that this is a problem. I find it difficult to find out what is the source of this error, and would appreciate any help finding a way to solve this problem, since it seems that it is difficult to get a real error inside Mandrill-dotnet code.

Best regards Tobias

+4
source share
1 answer

I see that in version 2.4.1 of Mandrill-dotnet, the JsonException just swallowed and turned into a MandrillException (which we can check in the sourcecode on GitHub )

However, I think you have already made a transfer request and fixed it for version 2.4.181 .

From what I can say so far, it seems that the source of the error is transient: similar content will be sent to the Mandrill API with absolutely no problems before and after errors occur, but the cluster will not serialize.

Did you find anything more useful with the optional advanced exception handling added to Mandrill-dotnet?

0
source

All Articles