Log in

View Full Version : Undifined var with $echo



PixelRSA
02-26-2014, 08:17 AM
Hello i get this error:

Notice: Undefined variable: mail_body

In this line of code:

echo $mail_body;


How exactly does one fix this with no reference of mail body

flatlander
02-26-2014, 03:32 PM
if (isset($mail_body)) {echo $mail_body;}