|
@@ -93,7 +93,6 @@
|
|
$send_to = stripslashes($send_to);
|
|
$send_to = stripslashes($send_to);
|
|
|
|
|
|
/** This formats a CC string if they hit "reply all" **/
|
|
/** This formats a CC string if they hit "reply all" **/
|
|
- echo "TO: $send_to<BR>CC: $send_to_cc<BR>";
|
|
|
|
if ($send_to_cc != "") {
|
|
if ($send_to_cc != "") {
|
|
$send_to_cc = ereg_replace(";", ",", $send_to_cc);
|
|
$send_to_cc = ereg_replace(";", ",", $send_to_cc);
|
|
$sendcc = explode(",", $send_to_cc);
|
|
$sendcc = explode(",", $send_to_cc);
|
|
@@ -116,10 +115,7 @@
|
|
if ((strtolower(trim($sendcc[$i])) != strtolower(trim($whofrom))) &&
|
|
if ((strtolower(trim($sendcc[$i])) != strtolower(trim($whofrom))) &&
|
|
(strtolower(trim($sendcc[$i])) != strtolower(trim($whoreplyto))) &&
|
|
(strtolower(trim($sendcc[$i])) != strtolower(trim($whoreplyto))) &&
|
|
(trim($sendcc[$i]) != "")) {
|
|
(trim($sendcc[$i]) != "")) {
|
|
- if ($i == count($send_cc))
|
|
|
|
- $send_to_cc .= trim($sendcc[$i]);
|
|
|
|
- else
|
|
|
|
- $send_to_cc .= trim($sendcc[$i]) . ", ";
|
|
|
|
|
|
+ $send_to_cc .= trim($sendcc[$i]) . ", ";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$send_to_cc = trim($send_to_cc);
|
|
$send_to_cc = trim($send_to_cc);
|