Hi all
please, some body help me, its too strange that im trying 3 days to send an email but i cant. I use phpmailer and recieve this Mailer Error: Language string failed to load: connect_host
this is my code, whats wrong?
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = "something";
$mail->SMTPAuth = true;
$mail->Username = "myusername";
$mail->Password = "mypassword";
$mail->From = "email1@domailname.com";
$mail->FromName = "name1";
$mail->AddAddress("email2@domainamel.com","name2");
$mail->WordWrap = 50;
$mail->IsHTML(true);
$mail->Subject = "Here is the subject";
$mail->Body = "this is testttttttt";
$mail->AltBody = "This is the text-only body";
if(!$mail->Send())
{
echo "Message was not sent <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
?>