Hey guys,
I needed to move this thread over to the general forums: http://forum.gravityhelp.com/topic/multiple-autoresponders-to-emails-in-same-form
Just getting it started over here.
Thanks.
Hey guys,
I needed to move this thread over to the general forums: http://forum.gravityhelp.com/topic/multiple-autoresponders-to-emails-in-same-form
Just getting it started over here.
Thanks.
Sorry, I forgot to post a link to the form we have setup: http://blogs.maryville.edu/maryvillesportscamps/soccer-camp/team-registration/
We can't access the sample form, it's requiring a login. Can you make it public?
Sorry about that. It's public now.
rgaubatz,
Place the following code snippet in your theme's functions.php file.
Let me know if you have any issues
add_filter("gform_pre_submission_filter", "add_bcc");
function add_bcc($form){
if($form["id"] != 2)
return
$bcc = $_POST["input_9"] . ","; //player 1 email
$bcc .= $_POST["input_11"] . ","; //player 2 email
$bcc .= $_POST["input_13"] . ","; //player 3 email
$bcc .= $_POST["input_15"] . ","; //player 4 email
$bcc .= $_POST["input_17"]; //player 5 email
$form["notification"]["bcc"] = $bcc;
return $form;
}
Thanks, worked like a charm.