Reply To: "video" page problem

Support Forums White – HTML Template "video" page problem Reply To: "video" page problem

#4960
CreaboxThemes
Keymaster

Hi,

edit the file contact.php (folder php) and change the code in the line 34 to his one:

34 ... $mail->SetFrom(TO_EMAIL,TO_NAME);

Then, edit the file default.php (folder php/template) and remove all the code and paste this one:

<? 
     ob_start();
?>
     <html>
          <head></head>
          <body>
               <div><strong>Name: </strong><? echo $name; ?><br/></div>
               <div><strong>Email: </strong><? echo $email; ?><br/></div>
               <div><strong>Message: </strong><? echo $message; ?><br/></div>
          </body>
     </html>
<?
     $contents=ob_get_contents();
     ob_end_clean();
     return($contents);
?>

Regards