I have this quote form I setup, general basic fields. The problem is the form sends only this to the email recipient (my end). It does not include all the info of all fields. I'm not a programmer, so help is appreciated.
The only thing shown in the email is this:
Name:
Email Address:
Subject:
Message:
process.php
PHP Code:<?php
@extract($_POST);
$messageText = 'Name: ' . stripslashes($user_name) . "\r\n";
$messageText .= 'Email Address: ' . stripslashes($email_address) . "\r\n";
$messageText .= 'Subject: ' . stripslashes($subject) . "\r\n";
$messageText .= 'Message: ' . stripslashes($message) . "\r\n";
$to = 'sales@mydomain.com';
$subject = 'Website Contact Form Submission';
$message = $messageText;
$headers = 'From: Form Mailer <sales@mydomain.com>';
mail($to, $subject, $message, $headers);
?>



Reply With Quote




Bookmarks