C
|
cgphp 11/7/2012 |
You can use the PHPrunner wrapper for mail() function: http://xlinesoft.com/phprunner/docs/runner_mail_function.htm |
P
|
phpcmk author 11/8/2012 |
Hi, |
![]() |
Sergey Kornilov admin 11/9/2012 |
You need to retrieve email address from the database. |
P
|
phpcmk author 11/11/2012 |
You need to retrieve email address from the database. If email field is a part of the record being added you can use $values["EmailFieldName"]. If email address is stored in the login table use AfterSuccessfulLogin event to save email address of current user in session variable: $_SESSION["email"]=$data["emailaddress"] Then in your code use $_SESSION["email"] instead of hardcoded email address.
|