12/06/2009, 11:41
|
| | | Fecha de Ingreso: febrero-2003 Ubicación: En algun lugar de cancun
Mensajes: 384
Antigüedad: 21 años, 9 meses Puntos: 0 | |
Respuesta: problemas de mandar email con cron job, se manda sin attachment es que es con la clase phpmailer
Código:
require_once('lib/class.phpmailer.php');
$mail = new PHPMailer(); // defaults to using php "mail()"
$mail->IsSendmail(); // telling the class to use SendMail transport
$body = "html";
$body = eregi_replace("[\]",'',$body);
$mail->AddReplyTo("[email protected]","correo nombre");
$mail->SetFrom('[email protected]', 'correo nombre);
$mail->AddReplyTo("[email protected]","correo nombre");
$address = "[email protected]";
$mail->AddAddress($address, "nombre");
$mail->Subject = "Test 7 days after tour";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$mail->AddAttachment("images/electronicpostal.jpg"); // attachment
//$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
y si creo que el problema debe de ser la ruta, lo voy a probar.. saludos
__________________ solo firma |