documentation
documentation copied to clipboard
Mailgun Documentation
Hello, I am receiving an email with CSV attachment that contains utf8 characters. The receiver route is configured with store(notify). When I try to load the attachment with the link...
Within the section for updating template information or content, the parameters and their descriptions are not formatted into a table, making it difficult to read. Endpoint: `PUT //templates//versions/` ``` template...
There is a mistake in the spelling of `configure`  link: `https://documentation.mailgun.com/en/latest/user_manual.html#events`
Hi, Today in the mailgun UI, on the sending api keys page such as: ``` https://app.mailgun.com/app/sending/domains/www.example.com/sending-keys ``` when visiting the page, the keys didn't load, for so long that it...
The [example response to view a single unsubscribes](https://documentation.mailgun.com/en/latest/api-suppressions.html#view-a-single-unsubscribe) contains the `tag` field, holding a single string, whereas the API actually returns this data as the `tags` field, as an array...
The example response in the [section to view a single bounce](https://documentation.mailgun.com/en/latest/api-suppressions.html#view-a-single-bounce) is missing the `message_hash` key: ```json { "address": "[email protected]", "code": "550", "error": "No such mailbox", "created_at": "Fri, 21 Oct...
The API docs [for stats](https://documentation.mailgun.com/en/latest/api-stats.html#stats) mention the `v3//stats` route, but querying it returns a `404` with the response `{"message":"this route was deprecated 2 years ago and is no longer available"}`....
It seemed this page briefly mentioned how to be notified for inbound Emails: https://github.com/mailgun/documentation/blob/master/source/quickstart-receiving.rst However the provided Django sample code didn't list all fields/headers in the `POST` request body to...
The C# documentation is using an old version of RestSharp, and the code given in examples will not function for the current stable NuGet install. From https://restsharp.dev/v107/#restsharp-v107: > The latest...
You can include this: ```csharp private string ComputeSignature(string stringToSign) { var secret = "Webhook Signing Key"; using (var hmac = new HMACSHA256(Encoding.ASCII.GetBytes(secret))) { var signature = hmac.ComputeHash(Encoding.ASCII.GetBytes(stringToSign)); return BitConverter.ToString(signature).Replace("-", "");...