I have a scenario here.
- We want new user for the application to register.
- Upon initial/ temporary registration completion, we need to email them a link for verification (like all standard user based WebApplications will do).
I am planning to use CreateUserWizard control in Asp.Net, which could send an email, if the credentials are provided.
As per my knowledge,
we can send this email by providing required credentials and the SMTP server details and that is it. The link in the email will bring back client to one of confirm Registration pages with a unique Id as query string. (as we add the link in email)
My question is, can we do this verification, by sending email as above without having some Emailing Component implemented or I am missing something.
NOTE: using SqlServer 2005, C#
Thanks