Thanks it worked...but
Can I use the same email form for different email recipients? I do not need it to be dynamic. On my email form I noticed where the recipient's email has been entered by the wizard. I copy the original email.php and renamed it as email_1.php, email_2.php and so on. I then change the email address on every page to the correspondent recipient's email address.
// build up recipients array
$CurIndex = sizeof($RecipArray);
$RecipArray[$CurIndex] = array();
$RecipArray[$CurIndex ][] = "email@domain.com";
I try using it with my email_1.php but nothing is being sent. Do I need to copy waue_emails_1.php and rename it as waue_emails_2.php?