Send eMail address to HTTP Server

delphi package - automated exception handling
Post Reply
mightymango
Posts: 2
Joined: Wed Jan 24, 2007 1:07 pm

Send eMail address to HTTP Server

Post by mightymango »

When a user sends us a bug report it is uploaded to our server and saved in a database along with any screenshot.

I would like to be able to also store the persons name and email address. Is this sent to the 'HTTP Server' and if so in what format? I will need to read this using PHP.

Thanks
Simon
madshi
Site Admin
Posts: 10766
Joined: Sun Mar 21, 2004 5:25 pm

Post by madshi »

If you're using the default madExcept upload assistant with the default "contact form", the sender's email address and name is uploaded to your script as a separate field named "MailFrom". Basically "exceptIntf.MailFrom" is sent to your script as a separate field. And the "contact form" fills "exceptIntf.MailFrom".
mightymango
Posts: 2
Joined: Wed Jan 24, 2007 1:07 pm

Post by mightymango »

Thanks that works fine!

I just read $_POST['MailFrom'] in the PHP script on our server.
Post Reply