RE: Re: WAMP Clustering

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



trying to send a multipart email (with text and html options). every so
often in the resulting email i see some spaces and an !. could be right
in the middle of a word or in between some words, doesn't matter. nor
can I really establish that's it's after so many characters. below is
the code, can anyone see if I'm missing something?
 
 
$mime_boundary = "----High Touch Inc----".md5(time());
 
$to = $email;
$subject = "2008 High Touch Users Conference Date Survey";
$headers = "From: Webmaster <webmaster@xxxxxxxxxxxxxxxx>\n";
$headers .= "Reply-To: Webmaster <webmaster@xxxxxxxxxxxxxxxx>\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: multipart/alternative;
boundary=\"$mime_boundary\"\n";
 
$message = "--$mime_boundary\n";
//$message .= "Content-Type: text/plain; charset=UTF-8\n";
//$message .= "Content-Transfer-Encoding: 8bit\n\n";
$message .= "Content-Type: text/plain; charset=\"iso-8859-1\"\n";
$message .= "Content-Transfer-Encoding: 7bit\n\n";
$message .= $tmsg."\n";
  
$message .= "--$mime_boundary\n";
//$message .= "Content-Type: text/html; charset=UTF-8\n";
//$message .= "Content-Transfer-Encoding: 8bit\n\n";
$message .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
$message .= "Content-Transfer-Encoding: 7bit\n\n";
 
$message .= "<html>\n";
$message .= "<body style=\"font-family:Verdana, Verdana, Geneva,
sans-serif; font-size:14px; color:#666666;\">\n";
$message .= $hmsg."\n";
$message .= "</body>\n";
$message .= "</html>\n";
 
$message .= "--$mime_boundary--\n\n";
 
$mail_sent = @mail( $to, $subject, $message, $headers );
echo $mail_sent ? "Mail sent<br />" : "Mail failed<br />";

Bill

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Database Programming]     [PHP Install]     [Kernel Newbies]     [Yosemite Forum]     [PHP Books]

  Powered by Linux