WaveRebel
|
| Posted: 11/21/2002, 7:45 AM |
|
Im using CustomCode for this.
I made a form wich submits the users info to the database.
Im using AfterInsert this following code in the Maillist_events.php
$SendMail = $users_email;
$Subject = "Gracias por registrarte en Burrodigital.com";
$Body = "Tu identificacion para el Exclusive Zone es la siguiente:\nUsuario:elburrodigital\nContrasena:tiempo101\nEsta area es solo para mayores de 18anos\nVisitanos http://www.elburrodigital.com";
$From = "Elburrodigital.com";
mail($SendMail, $Subject, $Body, "From: $From");
>>> $users_email is the name of the users email input textbox
and im not getting the value.
How can i get the value inside the events page so this works?
thanks in advanced :D Cheers
|
|
|
 |
RonB
|
| Posted: 11/21/2002, 7:54 AM |
|
In CC
$SendMail=$fldusers_email;
In CCS
global $yourgrid;
$SendMail=$yourgrid->users_email->Value;
Ron
|
|
|
 |
WaveRebel
|
| Posted: 11/21/2002, 8:19 AM |
|
Thanks a bunch Ron!
|
|
|
 |
|