BLIND CARBON COPY FORM RESULTS (BCC)


This variable is configured and implemented almost exactly like “CC To”.

<input name="bcc_to">

Simply enter all the email addresses that you would like to receive a carbon copy email that contains the form data.
Make sure that when entering this variable to remember the \ before the @ sign.

Example Config:

$cc_to{"1"} = "ccto1\@yourdomain.com"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$cc_to{"2"} = "ccto2\@yourdomain.com";
$cc_to{"3"} = "ccto3\@yourdomain.com";
$cc_to{"4"} = "ccto4\@yourdomain.com";
$cc_to{"5"} = "ccto5\@yourdomain.com";


Example: If you want to carbon copy your form data results to ccto1@yourdomain.com, then format the “send to” field like the example below.
<input name="cc_to" type="hidden" value="1">

-OR- If you want to carbon copy your form data results to ccto2@yourdomain.com, then format the “send to” field like the example below.
<input name="cc_to" type="hidden" value="2">

Etc....

GOING FURTHER:
If you have multiple forms that you would like to carbon copy to multiple email addresses, simply add the additional variables as shown below. For example, if you have 10 addresses, the config should follow the example below.

$cc_to{"1"} = "ccto1\@yourdomain.com"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$cc_to{"2"} = "ccto2\@yourdomain.com";
$cc_to{"3"} = "ccto3\@yourdomain.com";
$cc_to{"4"} = "ccto4\@yourdomain.com";
$cc_to{"5"} = "ccto5\@yourdomain.com";
$cc_to{"6"} = "ccto6\@yourdomain.com";
$cc_to{"7"} = "ccto7\@yourdomain.com";
$cc_to{"8"} = "ccto8\@yourdomain.com";
$cc_to{"9"} = "ccto9\@yourdomain.com";
$cc_to{"10"} = "ccto10\@yourdomain.com";