Quote:
05-15-03 at 06:56 PM Remi said this in Post #126
Hi Erwin
Is it posible to send defferent subjcet to another email.
For example, I wan to send the "Bug Report" to my personal email and the rest to the webmasteremail.
Thanks in advance
|
Yes, it's very possible, and easy to do.
Just change this bit:
Find:
PHP Code:
$to = "$webmasteremail";
if ($title == "") {
$title = $otitle;
}
Underneath ADD:
PHP Code:
if ($title == "Whatever") {
$to = "anotheremail@yourdomain.com";
}
Just add as many of those underneath as you like.