typesafe / mnailgun

A simple .Net wrapper library for the Mailgun API that allows you to send messages, create web hooks, manage mailboxes, etc. with minimal effort.
Other
35 stars 25 forks source link

SendMail response object does not include message id #7

Closed obliojoe closed 10 years ago

obliojoe commented 10 years ago

Would be nice if mnailgun included the message id in its response from the SendMail command.

See here: http://documentation.mailgun.com/api-sending.html#examples

Sample response:

{
  "message": "Queued. Thank you.",
  "id": "<20111114174239.25659.5817@samples.mailgun.org>"
}

Thanks!

typesafe commented 10 years ago

Hi @obliojoe,

Thanks for the suggestion. I have already applied the changes, but my tests aren't passing because mailgun's test account has gone beyond it's sending limits... As soon as I've checked the changes, I'll publish a new version on nuget.

typesafe commented 10 years ago

I just uploaded 0.6.0 of the nuget package. This version include the mailgun message id.

obliojoe commented 10 years ago

So awesome. Thanks!