webdesignwhitey Posted February 19, 2013 Share Posted February 19, 2013 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 More sharing options...
pmccall2 Posted February 19, 2013 Share Posted February 19, 2013 Make sure $error is set. if (isset($error)) { // do error stuff } else { //no error do regular stuff } Link to comment https://forums.phpfreaks.com/topic/274670-undefined-variable-error/#findComment-1413288 Share on other sites More sharing options...
webdesignwhitey Posted February 20, 2013 Author Share Posted February 20, 2013 Thanks very much! Link to comment https://forums.phpfreaks.com/topic/274670-undefined-variable-error/#findComment-1413606 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.