I am using webhooks inside the mailgun API
http://documentation.mailgun.com/user_manual.html#webhooks
<div>In webhooks I have to provide a URL in mailgun control panel then mailgun will make an HTTP POST to my URL and send some parameters. I got a temporary URL from this website -
http://requestb.in/and set it in mailgun to receive the HTTP post. How I can get the parameters that have been sent via post?</div> <div></div>
I was thinking using:
string domain = Request.Params["domain"Go to the complete details ...