i have a flash form, i want that flash form to send one copy to the customer and one to the store!
here’s the php scrip i have so far
<?php
$ToEmail = "mansouros@hotmail.com";
$ToSubject = "a computer suscriber";
$company = "roya";
$EmailBody = "Sent By: Roya
Senders Name: $rname
Email Address: $rmail
Phone Number: $rfone
";
$EmailFooter = "Computer Data:
$allData
$REMOTE_ADR http://www.mansours.net
";
$Message = $EmailBody.$EmailFooter;
mail($ToEmail. "<".$ToEmail.">",$ToSubject, $Message, "From: ".roya." <".$company.">");
mail($smail. "<".$smail.">",$ToSubject, $Message, "From: ".roya." <".$company.">");
?>
what should i add/edit/remove?
btw - $smail, is an input box variable inside withing the flash(customer’s email).
please help