Forum Moderators: coopster
so my only problem so far is this error.
Message was not sentMailer Error: Language string failed to load: recipients_failed xx@g#*$!.com
i tried to move language files everywhere then i discoverd that its "English" by default which is what I want.. so i deleted all language folder.. n still gives the same error.
so what to do to fix this?
________________________
this is my code:
------------------------
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "localhost"; // SMTP server
$mail->From = "xxx@gxxx.com";
$mail->AddAddress("xxx@gxxx.com");
$mail->Subject = "first mailing";
$mail->Body = "hi! \n\n this is First mailing I made myself with PHPMailer!";
$mail->WordWrap = 50;
if(!$mail->Send())
{
echo "Message was not sent";
echo "Mailer Error: " . $mail->ErrorInfo;
}
else
{
echo "Message has been sent";
}
?>
thanks in advance
so incase someone else had this problem this is what i JUST did.
i downloaded free smtp server from
[softstack.com...]
setup then it just worked..
thanks for all ur time