Ah, now I understand. It seems that the Action Email To does not support including subject and body. So, that won't work.If you use the Email option in the form, the server is supposed to do this but most companies have prevented their servers from doing this due to spam. The only option you really have is to use the CGI option. And then you have to have your IT people put it on the server where you can find it. Here is one simple script I used.
$fromAddr = "abc@def.com"; $toAddr = "xyz@mno.com"; $subject = "your subject";$message = ""; //Iterate through all request variables/*foreach ($_REQUEST as $request => $value) {$message .= "$request = $valuen";}*///$message .= "Email addr t" . $_REQUEST ;$message .= $_REQUEST ;if(mail( $toAddr, $subject, $message, "From: $fromAddr" )) echo( "Success! You have been added to Ben's mailing list." );else echo( "Unknown Error. Your information could not be submitted at this time.nPlease try again later." );?>Put it on the server. Enter its name in the Submit results to: field on the form properties. If you are not clear consult the User Guide or just click the Help button on the form Properties.