Hello
doens anyone is using PHPMailer http://phpmailer.sourceforge.net ?
it is working better than the php mail function but I got nothing on yahoo mail... does any one fixed this pb ?
bye
Erggh.
Works great for me!
http://phpmailer.sourceforge.net/
See Documentation and FAQ, those worked for me.
Originally posted by sysera Erggh. Works great for me! http://phpmailer.sourceforge.net/ See Documentation and FAQ, those worked for me.
I don't see anything
look at my code..maybe I forgot something important require_once($diskpath."/config/class.phpmailer.php"); $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Host="localhost"; $mail->From=$from; $mail->FromName=""; $mail->AddAddress($email); $mail->AddReplyTo($webmaster_email); $mail->WordWrap=50; if($type==1) { $mail->IsHTML(yes); } $mail->Subject=$subject; $mail->Body=$message; $mail->SetLanguage(en,$diskpath."/config/language/"); if(!$mail->Send()) {
} else { $result="ok"; }
Yeah I use it - nto a bad prog.
What happens when you run it ? Errors ??
Originally posted by The Chancer Yeah I use it - nto a bad prog. What happens when you run it ? Errors ??
no error..mail sent no received on yahoo !!! and with the mail function in php yahoo go it !!
Have you checked the bulk mail ??
Originally posted by The Chancer Have you checked the bulk mail ??
hello
yep it was : $mail->FromName=""; yahoo doesn't like empty values...