CARBON COPY FORM RESULTS (CC)
$cc_to{""}
This variable is configured and implemented almost exactly like the 'sendto'.
Simply enter all the possible email addresses that you would like to send a carbon copy email of the form data to.
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 examples 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 examples below.
<input name="cc_to" type="hidden" value="2">
Etc....
GOING FURTHER
If you have multiple forms that you would like to carbon copy results to,
then simply add additional variables as shown below.
For example, if you have 10, the config should look like the following.
$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";