Sorry to have been so vague. My form method is set to POST.
Here's the url of the page that contains my current test:
formtest3.php
I have tried a couple of different things for the body--all of them pretty inept, I'm sure. All I really want is for the contents of my "test" field to show up there. I'm not trying to create any special formatting. In my current test, I tried to achieve this with a "post" command. You can see that from the following lines, which I've pasted in from the relevant webassist waue file:
//Start Mail Body
$MailBody = $MailBody . "<html><head></head><body>";
$_POST["test"];
$MailBody = $MailBody . "</body></html>";
//End Mail Body
Thanks for looking this over.
Chris