Rias
asked on
Email in vb.net app
Hello,
How to add email verification process to a vb.net existing program.
Part of program validates a new user by sending them an email, having them confirm it, and the system verifying their response doesn't work . Need guideline on how to proceed with this.
Cheers
How to add email verification process to a vb.net existing program.
Part of program validates a new user by sending them an email, having them confirm it, and the system verifying their response doesn't work . Need guideline on how to proceed with this.
Cheers
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Cheers mate!
the usual process is to generate a number, send it by mail as plain text or forged into a link, and store it in your DB, then the user goes to your site enters the code and you check if that code corresponds to the email you generated it for.