admin Site Admin
Joined: 10 Dec 2003 Posts: 70
|
Posted: Mon Mar 07, 2005 12:42 am Post subject: |
|
|
It could be custom programmed. If you haven't programmed in PHP it would be a little difficult to explain but you can look at the code at the end:
| Code: |
$extraHeaders = "";
if($email != '') { $extraHeaders .= "From: \"".addslashes($realname)."\" <".$email.">\r\n"; }
if($realname != '') { $extraHeaders .= "Reply-To: $email\r\n"; }
if($htmlFormat == 'h') { $extraHeaders .= "Content-type: text/html\r\n"; }
if($recipient_cc != '') { $extraHeaders .= "Cc: $recipient_cc\r\n"; }
if($recipient_bcc != '') { $extraHeaders .= "Bcc: $recipient_bcc\r\n"; }
$success = 1;
$success = mail($recipient,$subject,$msg,$extraHeaders);
|
Just switch the recipient and email values and of course change your message. That should get you started. |
|