Franck
|
| Posted: 08/05/2002, 2:30 AM |
|
i have this code but it doesn't match could someone tells; me what wrong with
any support will be a big help
<?php
//BindEvents Method @1-C8A9C6A3
function BindEvents()
{
global $members;
$members->Insert->CCSEvents["OnClick"] = "members_Insert_OnClick";
}
//End BindEvents Method
function members_Insert_OnClick() { //members_Insert_OnClick @5-35949D28
//Send Email @7-59B11C0D
global $members;
global $username;
$dbinternet = new clsDBdoctorama;
$word = CCGetSession("member_id);
$to = CCDLookUp("email", "members", "member_id='$word'", $dbinternet);
$subject = "Hello";
$message = "here are your informations";
$from = "Doctorama";
$additional_headers = "From: $from\nReply-To: $from";
mail ($to, $subject, $message, $additional_headers);
}
?>
|
|
|
 |
Nicole
|
| Posted: 08/06/2002, 5:18 AM |
|
Frank,
Lets continue the single thread for it as the reported problem is the same.
The second link is: http://www.gotocode.com/disc_viewt.asp?mid=13496
|
|
|
 |
|