Nandini Posted September 3, 2008 Share Posted September 3, 2008 hi i am using php4.11 i want to send mails from localhost. i used phpmailer (send mail using gmail smtp). but i got a error like "Mailer Error: SMTP Error: Could not connect to SMTP host.". here is my script <?php include("class.phpmailer.php"); //include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded $mail = new PHPMailer(); $body = $mail->getFile('examples/contents.html'); $body = eregi_replace("[\]",'',$body); $mail->IsSMTP(); $mail->SMTPAuth = true; // enable SMTP authentication $mail->SMTPSecure = "ssl"; // sets the prefix to the servier $mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server $mail->Port = 465; // set the SMTP port for the GMAIL server $mail->Username = "email.gmail.com"; // GMAIL username $mail->Password = "password of email.gmail.com"; // GMAIL password $mail->From = "email.gmail.com"; $mail->FromName = "First Last"; $mail->Subject = "PHPMailer Test Subject via gmail"; //$mail->Body = "Hi,<br>This is the HTML BODY<br>"; //HTML Body $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test $mail->WordWrap = 50; // set word wrap $mail->MsgHTML($body); $mail->AddAddress("[email protected]", "John Doe"); $mail->AddAttachment("images/phpmailer.gif"); // attachment $mail->IsHTML(true); // send as HTML if(!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message sent!"; } ?> can any one help me Link to comment https://forums.phpfreaks.com/topic/122522-solved-how-can-i-send-email-from-localhost-using-php/ Share on other sites More sharing options...
Nandini Posted September 5, 2008 Author Share Posted September 5, 2008 On xampp (php 5) its working fine. thanq very much Link to comment https://forums.phpfreaks.com/topic/122522-solved-how-can-i-send-email-from-localhost-using-php/#findComment-634390 Share on other sites More sharing options...
Hany_h2004 Posted November 24, 2008 Share Posted November 24, 2008 I have problem Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address in C:\AppServ\www\local_hany\register.php on line 72 can you solved or help my Link to comment https://forums.phpfreaks.com/topic/122522-solved-how-can-i-send-email-from-localhost-using-php/#findComment-697864 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.