Trigger password reset for ALL users

Hi

When a user is created via SuiteCRM an email is automatically sent to that user with login details. I’d like to achieve the same when I bulk insert users into the database, does anyone know how this could be done?

Kind Regards

Luke

If straight reset via db, what you need will be…

UPDATE users SET user_hash = MD5(‘password’) WHERE user_name = ‘username’;

You can pretty much tailor what sort of password you need by modifying the above sql.

Cheers,
Shaun

1 Like