I am not the greatest php programmer - I've looked at PHPMailer
but I don't know where the php include path is to copy:
"Copy class.phpmailer.php into your php.ini include_path. If you are using the SMTP mailer then place class.smtp.php in your path as well. If you do not have control of the include directory and you are running PHP 4.0 or higher you can use this function to set it to the correct directory: "
I have customers melting down right now.
I tried dealing w/ the headers per another message:
$to_email = "myemail@mydomain.com,".$from_email;
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/plain; charset=iso-8859-1\r\n";
$headers .= "X-Priority: 1\r\n";
$headers .= "X-MSMail-Priority: High\r\n";
$headers .= "X-Mailer: php\r\n";
$headers .= "From: " . $from_email . "\r\n";
$headers .= "Reply-To: " . $from_email. "\r\n";
$returnValue = mail( $to_email, "Message from mydomain", $message, "From: $from_email" );
if($returnValue === true) echo 'Success!';
else echo 'Sending failed';
I get a successful message but no email