Hi,

How to i can set default email address for registration like username@yourdomain.com

suppose if user enter username like manish then email address should be manish@yourdomain.com. if user enter username like rajesh then email address should be rajesh@yourdomain.com.

Please help me regard this problem

Comments

panis’s picture

a) javascript.
- hide email address field
- when user fills in username automatically fill in email address as you need it to.
- or upon submission of form send auto generated email address

b) custom module
- hook_form_alter function - look for user_register form and hide the email address field.
- hook_user - before user gets inserted into database or validated - update the email address field as you need it to.

c) edit the user registration module code to let you do it - if it is an internal system.

manishrustagi’s picture

hi

I am not able to hide or automatically fill email address.