• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

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