• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Resend activation email

mkerala

👽 Chevereto Freak
Hi,

SMTP system was not working on my server. I have now fixed the issue, but several users have missed activation mail.

Is there any way to resend activation email to all users awaiting activation? Or list users awaiting email activation?
 
They can request a re-activation email if they click in forgot password bit in this vase the best to do is just to set the user status as valid manually.
 
you can try something like this:

Get all the emails of the affected users (to send a email manually after change the status of the users):

select user_email from chv_users where user_status !='valid';

Now set valid all the accounts:

update chv_users set user_status = 'valid' where user_status !='valid';

And done, now you can send a email to all the affected users with the update o something.
 
Back
Top