-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature] Add warning for email verification status and allow to resend verification email #281
Comments
…send verification email openwisp#281 - Added a warning message for users with email notifications enabled but not verified. - Linked to a view that triggers the resending of the verification email. - Used the user_logged_in signal to trigger this message for staff users only. - Created UserProfile model to track email verification status. - Updated views to handle email verification and resending verification emails. - Defined URL patterns for the new views.
Sir @nemesifier, Could you please review the feature I have added locally? Let me know if it is working as expected or if any modifications are needed. If everything looks good, kindly merge this pull request. If there are any issues, please create a new issue, and I will work on addressing them. It took me a considerable amount of time and effort to complete this feature, and I would be grateful if it could be merged. Thank you. |
@SitaGanesh #333 (review), thanks! |
If a user is accessing the admin and has email notifications enabled, we should check whether the user has its email verified.
If the email is not verified, we can show a warning message using the django message framework, something like:
Email notifications are enabled for your account, but since your email address has not been verified, email sending is currently disabled. Please verify your email address to enable email notifications.
We should link to a view that triggers the resending of the verification email.
We could use the user_logged_in signal to trigger this message, we should execute the receiver function only if the user is a staff user.
The text was updated successfully, but these errors were encountered: