This topic is locked

Change email to lowercase after Registration

4/1/2008 3:53:40 AM
PHPRunner General questions
J
jack knowles author

Hello Forum,
After the user sucessfully registers, I would like the registration email to be lowercase in the database. Additionally, the auto email sent to the user should also be lowercase.
Table: Customers

Fields: name, address, email, etc
To date, i've carried out the following:

Visual Editor, Register Page, double click email field, view as custom: $value = strtolower($value);
Thanks in advance
JK

J
Jane 4/1/2008

Hi,
use BeforeRegister event on the Events tab for this purpose.

Here is a sample code:

$userdata["FieldName"] = strtolower($userdata["FieldName"]);



where FieldName is your actual field name.