YAFLogo

plasticman
  • plasticman
  • 53.4% (Neutral)
  • YAF Forumling Topic Starter
14 years ago
Hi guys,

I want to set all users e-mail address property to @mypostdomain.com.

What's the easiest way to do it?

Do I get it right that users can't edit this property at thier profiles by themselves?

Sponsor
mjhufford
14 years ago
A SQL query is going to be your best bet. UPDATE yaf_Users SET Email = NickName + "@MyPostDomain.com" Double check your field and table names. You may also want to do a TRIM on nickname or a REPLACE if you're allowing spaces.
raveendraagautam
14 years ago

A SQL query is going to be your best bet. UPDATE yaf_Users SET Email = NickName + "@MyPostDomain.com" Double check your field and table names. You may also want to do a TRIM on nickname or a REPLACE if you're allowing spaces.

mjhufford wrote:

Thanks for this information

Aquarius communications