php-windows Digest 29 May 2007 20:09:43 -0000 Issue 3243

Topics (messages 27986 through 27987):

Re: WAMP Clustering
        27986 by: Moore, Joshua
        27987 by: Bill Bolte

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
Uniform Server??

http://www.uniformserver.com/

hope that's what your talking about.

-----Original Message-----
From: chandar [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 28, 2007 10:26 PM
To: zerof
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Re: WAMP Clustering

We have WAMP installers in the internet right?
zerof wrote:
> JM escreveu:
>> Does anyone have any experience clustering this configuration?
>> Windows, Apache, mySQL, and PHP? I'm doing research now and could use
>> any info. TIA.
>>
>> John
> --------------------------------
> http://www.educar.pro.br/en/
>

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

--- End Message ---
--- Begin Message ---
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 <[EMAIL PROTECTED]>\n";
$headers .= "Reply-To: Webmaster <[EMAIL PROTECTED]>\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

--- End Message ---

Reply via email to