BLIND CARBON COPY FORM RESULTS (BCC)
<input name="bcc_to">
This variable is configured and implemented almost exactly like "CC To".
In the HTML form field name="bcc_to", enter all corresponding email address numbers to $cc_to{""}. The email addresses configured will then be blind carbon copied on the form submission results.
Example:
In bizmail.cgi
$cc_to{"1"} = "ccto1\@yourdomain.com";
$cc_to{"2"} = "ccto2\@yourdomain.com";
$cc_to{"3"} = "ccto3\@yourdomain.com";
$cc_to{"4"} = "ccto4\@yourdomain.com";
$cc_to{"5"} = "ccto5\@yourdomain.com";
On HTML Form
<input name="bcc_to" value="1,3,4" >
In this example, data email blind carbon copied to: ccto1@yourdomain.com, ccto3@yourdomain.com & ccto4@yourdomain.com