I have a single php script that a user edits this array for email addresses;
<?PHP
$Sent_to[0] = "him@domain.com";
$Sent_to[1] = "her@domain.com";
$Sent_to[2] = "friend@domain.com";
$Sent_to[3] = "boss@domain.com";
?>
I have the script where it takes [1] to [3] and makes Cc: <emailaddress> \r\n
When I mail, it only sends the to [0] and the [1].
<?PHP
$Sent_to[0] = "him@domain.com";
$Sent_to[1] = "her@domain.com";
$Sent_to[2] = "friend@domain.com";
$Sent_to[3] = "boss@domain.com";
?>
I have the script where it takes [1] to [3] and makes Cc: <emailaddress> \r\n
When I mail, it only sends the to [0] and the [1].