Hi groog,
You will need access to an Exchange server (which I assume your business does).
If you do, you can send email from php, here is a post explaining it.
You can use the mail and POST functions.
With these, you can take all the POST'd data and send it via PHP to your email account.
In a nutshell, you can do something like this, with your POST data.
// this goes on the process page
// get all the POST data
$Title = $_POST['Title'];
$FirstName= $_POST['FirstName'];
$LastName= $_LastName['Title'];
$Datetime = date('m\-d\-Y g:i:s A');
$header = "From: yourdomain.com";
$subject = "Form submitted by " . $FirstName . " " . $LastName;
$email_to = "you@somewhere.com";
$message = "Your info goes here.";
$message = $message."\n"
. "Title: $Title\n"
. "FirstName: $FirstName\n"
. "LastName: $LastName\n"
. "Date Time: $Displaytime\n"
// open SMTP port to send emails
$fp = fsockopen(localhost, 25, $errno, $errstr, 30);
mail($email_to, $subject ,$message ,$header ) ;
// close fp port
fclose($fp);
That should do it for you (Note: I did not test this code for errors/omissions, but it should work).
Regards,
Don