Re: [PHP] phpmailer subject line wierdness

2006-03-27 Thread Chris

Mark Steudel wrote:

I know that there is a phpmailer list, but it's pretty low volume, so I
hoped you all might have some ideas on this.
 
If I set the subject line for a mail like:
 
$mail->Subject = 'Jconnect Passover Registration Confirmation';
 
The email never send, but if I stick a letter between O and N it goes out:
 
$mail->Subject = 'Jconnect Passover Registration Confirmatioan';
 
Any ideas? Does the 'on' translate to some weird line end character? Can I

try and re-encode it or something?


Could be as simple as a spam filter grabbing it - check your mail logs 
to make sure it's getting that far.


--
Postgresql & php tutorials
http://www.designmagick.com/

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



[PHP] phpmailer subject line wierdness

2006-03-27 Thread Mark Steudel
I know that there is a phpmailer list, but it's pretty low volume, so I
hoped you all might have some ideas on this.
 
If I set the subject line for a mail like:
 
$mail->Subject = 'Jconnect Passover Registration Confirmation';
 
The email never send, but if I stick a letter between O and N it goes out:
 
$mail->Subject = 'Jconnect Passover Registration Confirmatioan';
 
Any ideas? Does the 'on' translate to some weird line end character? Can I
try and re-encode it or something?
 
Mark