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
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
if (isset($mail_body)) {echo $mail_body;}
Bookmarks