Saludos, tengo este código que he sacado de la web de phpmailer, el caso es que una vez lo mandé y me funcionó, pero ahora lo pruebo y no funciona, certif01 y certif02 son las variables de 2 archivos que elijo del disco duro en un formulario. Me llega el correo pero los archivos no me llegan. Alguien Puede Ayudarme???
Código:
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "mail.etco.org"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "etcorg"; // SMTP username
$mail->Password = "elpassword"; // SMTP password
$mail->From = "[email protected]";
$mail->FromName = "Mailer";
$mail->AddAddress("[email protected]", "Josh Adams");
$mail->AddReplyTo("[email protected]", "Information");
$mail->WordWrap = 50; // set word wrap to 50 characters
$mail->AddAttachment($certif01,$name_certif01); // add attachments
$mail->AddAttachment($certif02,$name_certif02);
$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";
?>