I would like to show the information entered in my form shown after the user hits the submit button. I would like it to look just like the page you get when debug is on (the email part), without the debug information. This must be very easy because it is there with debug, but I am missing something. Thanks for you time..
Hi infidean ,
Try pasting this code into the OnSubmit After box:
Bob
Try pasting this code into the OnSubmit After box:
<?php
echo "<h4>E-mail message</h4>
<div style='border:1px solid black; padding:6px;margin:6px;'>
<p>From: $fromname [$from]<br />
To: ".implode($recipients,', ')."<br />
Subject: $subject</p>
$email_body<br /></div>";
?>
It's the same code as outputs the debug 'email' so hopefully it will work.Bob
This topic is locked and no more replies can be posted.