Jump to content

Undefined Variable Error


webdesignwhitey

Recommended Posts

Hi guys,

 

Hoping one of you lovely people can help. I'm testing my PHP mailer on XAMPP but I'm getting an error:

 

Notice: Undefined variable: error in C:\xampp\htdocs\sendEmail.php on line 22

 

The code is:

 

if (!$error) {

 

require_once('phpMailer/class.phpmailer.php');

$mail = new PHPMailer();

 

$mail->From = $email;

$mail->FromName = $name;

$mail->Subject = "Website Contact Form";

$mail->AddAddress($site_owners_email, $site_owners_name);

$mail->Body = $comments;

$mail->Send();

}

 

It seems to have a problem with the very top line of code....

 

Any help would be much appreciated.

 

Many thanks,

 

webdesignwhitey

Link to comment
https://forums.phpfreaks.com/topic/274670-undefined-variable-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.