SEND FORM RESULTS To
$sendto{""}
Simply enter all of the possible email addresses that you would like to receive your form data at.
The "send to" selection will also be the reply email address, if you have chosen to use send reply.
MAKE sure that when entering this variable to remember the \ before the @ sign.
Example Config:
$sendto{"1"} = "mail1\@yourdomain.com"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$sendto{"2"} = "mail2\@yourdomain.com";
$sendto{"3"} = "mail3\@yourdomain.com";
$sendto{"4"} = "mail4\@yourdomain.com";
$sendto{"5"} = "mail5\@yourdomain.com";
Example: If you want to send your form data results to mail1@yourdomain.com, then on your HTML form page you would insert the ‘field’ below with the value of 1 (as shown below).
<input name="send_to" type="hidden" value="1">
-OR- if you want to send your form data results to mail2@yourdomain.com, then on your HTML from page you would insert the ‘field’ below with the value of 2 (as shown below).
<input name="send_to" type="hidden" value="2">
Etc....
...GOING FURTHER
If you have multiple forms and you want to send the form data results to multiple email addresses, simply add additional variables as shown below.
If you have additional email addresses that you would like to receive the data to, you can add more fields. For example, if you have 10 addresses the config should look like this:
$sendto{"1"} = "mail1\@yourdomain.com"; ## (REMEMBER THE \ BEFORE THE @ SIGN)##
$sendto{"2"} = "mail2\@yourdomain.com";
$sendto{"3"} = "mail3\@yourdomain.com";
$sendto{"4"} = "mail4\@yourdomain.com";
$sendto{"5"} = "mail5\@yourdomain.com";
$sendto{"6"} = "mail6\@yourdomain.com";
$sendto{"7"} = "mail7\@yourdomain.com";
$sendto{"8"} = "mail8\@yourdomain.com";
$sendto{"9"} = "mail9\@yourdomain.com";
$sendto{"10"} = "mail10\@yourdomain.com";