el codigo que utilizo es este
Código PHP:
<?php
require("../class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "smtp1.example.com;smtp2.example.com"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "jswan"; // SMTP username
$mail->Password = "secret"; // SMTP password
$mail->From = "[email protected]";
$mail->FromName = "Mailer";
$mail->AddAddress("[email protected]", "Josh Adams");
$mail->AddAddress("[email protected]"); // name is optional
$mail->AddReplyTo("[email protected]", "Information");
$mail->WordWrap = 50; // set word wrap to 50 characters
$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments
$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = "Here is the subject";
$mail->Body = "This is the HTML message body <b>in bold!</b>";
$mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
?>
y el error que me da es este
Código PHP:
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: Host desconocido. in C:AppServwwwbancomercantilingreso_datos_todoPHPMailer_v2.0.0class.smtp.php on line 122
Warning: fsockopen() [function.fsockopen]: unable to connect to smtp1.example.com:25 (php_network_getaddresses: getaddrinfo failed: Host desconocido. ) in C:AppServwwwbancomercantilingreso_datos_todoPHPMailer_v2.0.0class.smtp.php on line 122
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: Host desconocido. in C:AppServwwwbancomercantilingreso_datos_todoPHPMailer_v2.0.0class.smtp.php on line 122
Warning: fsockopen() [function.fsockopen]: unable to connect to smtp2.example.com:25 (php_network_getaddresses: getaddrinfo failed: Host desconocido. ) in C:AppServwwwbancomercantilingreso_datos_todoPHPMailer_v2.0.0class.smtp.php on line 122
Message could not be sent.
Mailer Error: Language string failed to load: connect_host