[thelist] PHP Form Trouble

Jeff Hinds jeff.hinds at netagency.com
Mon Feb 14 23:24:41 CST 2005


When a form is submitted thru the website the email does not forward to the 
email (info at fitchappraisals.com) in the PHP form.
It does work when the email is set to other emails with other domain names.

Any reason why it would not work for the info at fitchappraisals.com and it 
would for other domains emails?

Thanks,

Jeff

http://www.fitchappraisals.com/appraisal_order.html

(order.php)

<?

$msg = "Apprasial Order Form\n";
$msg .= "BorrowersName: $BorrowersName\n";
$msg .= "Address: $Address\n";
$msg .= "City: $City\n";
$msg .= "County: $County\n";
$msg .= "State: $State\n";
$msg .= "Zip: $Zip\n";
$msg .= "SalesPriceEstimate: $SalesPriceEstimate\n";
$msg .= "LoanAmount: $LoanAmount\n";
$msg .= "ClosingDate: $ClosingDate\n";
$msg .= "NeedBy: $NeedBy\n";
$msg .= "Purchase: $Purchase\n";
$msg .= "Refinance: $Refinance\n";
$msg .= "EntryContact: $EntryContact\n";
$msg .= "HomeownersAgentsName: $HomeownersAgentsName\n";
$msg .= "HomePhone: $HomePhone\n";
$msg .= "HisWorkPhone: $HisWorkPhone\n";
$msg .= "HerWorkPhone: $HerWorkPhone\n";
$msg .= "SpecialInstructions: $SpecialInstructions\n";
$msg .= "LenderClient: $LenderClient\n";
$msg .= "LenderClientAddress: $LenderClientAddress\n";
$msg .= "LenderClientPhone: $LenderClientPhone\n";
$msg .= "LenderClientFax: $LenderClientFax\n";
$msg .= "LenderClientContact: $LenderClientContact\n";
$msg .= "LenderClientEmail: $LenderClientEmail\n";
$msg .= "EmailDelivery: $EmailDelivery\n";
$msg .= "Courier: $Courier\n";
$msg .= "FullURAR325: $FullURAR325\n";
$msg .= "FHAAppraisal375: $FHAAppraisal375\n";
$msg .= "Interior2055275: $Interior2055275\n";
$msg .= "Exterior2070125: $Exterior2070125\n";
$msg .= "MultiFamily525: $MultiFamily525\n";
$msg .= "Exterior2055200: $Exterior2055200\n";
$msg .= "Recertification: $Recertification\n";
$msg .= "NonOwnerOcc: $NonOwnerOcc\n";
$msg .= "FinalInspection: $FinalInspection\n";




$to = "(info at fitchappraisals.com)";
$subject = "Apprasial Order Form";
$mailheaders = "From: FitchAppraisals.com <> \n";
$mailheaders .= "Reply-To: $email\n\n";

mail($to, $subject, $msg, $mailheaders);

?>


More information about the thelist mailing list