PDA

View Full Version : CC to sender?


pete
03-05-2009, 10:22 AM
What variable can I add to the CC line in the WA_globals.php file so that I can have a copy of the form sent to the person who fills it out?

$WAGLOBAL_Email_CC = "" ;

(Or I guess more appropriately, I'd put MY address in the CC field and the user email variable in the TO field...)

I started this discussion in the old forum and got stranded after the switch. I like the new organization though...

Thanks,
Pete

Ray Borduin
03-05-2009, 10:35 AM
$WAGLOBAL_Email_CC = ((isset($_POST["Email_address"]))?$_POST["Email_address"]:"");

pete
03-05-2009, 10:41 AM
Sweet! Thanks for the quick reply - it works perfectly.

Pete