hola de nuevo!
a ver si juntos lo conseguimos!!!
pues estuyve buscando, y en este mismo foro hace 2 años han tenido el mismo problema, aqui el enlace
http://www.forosdelweb.com/f18/desac...3/#post3239122
la "solución" es cambiar la clase de phmailer:
Código PHP:
Ver originalrequire_once 'phpmailer/class.phpmailer.php';
require_once 'phpmailer/class.phpmailer.php';
class ValidatingWPHPMailer extends PHPMailer
{
public function AddValidAddress($email = '', $name = '', $title = '', $message = '', $phone = '')
{
$this->AddAddress($email,$name,$title,$phone,$message);
} else {
throw new phpmailerException('Email and FullName are required');
}
}
}
$mail = new ValidatingWPHPMailer ();
.........................
he agregado eso justo antes del comienzo del comienzo, pero me da el siguiente error (en el navegador):
"Fatal error: Uncaught exception 'phpmailerException' with message 'Email and FullName are required' in /home/user/public_html/es/contact5.php:109 Stack trace: #0 /home/user/public_html/es/contact5.php(116): ValidatingWPHPMailer->AddValidAddress('', 'Juanito') #1 {main} thrown in /home/user/public_html/es/contact5.php on
Alguien se le ocurre alguna cosa??
Gracias.