Hi bubblers !
I have a Data Type called ‘Manually Added Customers’ (which is separate from USER Db), which contains Details of Added CUSTOMERS (Name, Email, Contact, etc). When a CUSTOMER is added :
an Email with Verification Link is sent to CUSTOMER for verification. (This CUSTOMER doesnt have an account in our App, but we want to verify his Email Address.)
an API is Scheduled to DELETE this ‘Manually Added Customer’ after 30 days, if Email is not Verified.
following are the issues :
When verification link is clicked in Email, it goes to ‘404’ instead of the defined Confirmation_page. The Link contains TOKEN generated in previous step.
Generally ‘only when’ condition that can be used is ‘USER email confirmed is no’. But what condition should be used for verifying through Email Token, whether it has been confirmed or not ?
@adityasinghal08 You have constructed the link for the live app but you haven’t deployed the current work to live, it’s still in development.
When I go to rentlord.in/email_verification_done I get a 404 error because that page doesn’t exist in your live app.
When I go to rentlord.in/version-test/email_verification_done I see your page because you only have it in development.
Simply add version-test to the email link if you want to test this in development mode and publish your changes to live later, or publish your work to live app which will make the current link work.