Ver Mensaje Individual
  #24 (permalink)  
Antiguo 18/12/2008, 15:49
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 17 años, 11 meses
Puntos: 2135
Respuesta: Enviar PDF por correo

Mmm muy raro, tendrias que ver el resultado de tu función PHPMailer::send(), prueba guardarlo o algo asi por el estilo:
Código php:
Ver original
  1. if(!$mail->Send()) {
  2.       echo "Error al enviar el archivo!" . $mail->Error();
  3. } else {
  4.       $pdf->Output('extracto /' .$row3['no_interno'].'/'.date("d-m-Y", $fecha_salida).'','I');
  5.  
  6. }

Saludos.