Hi All,
I have implemented a registration form that requires a confirmation via email as described in this tutorial: http://www.codeproject.com/Tips/738090/ASP-NET-MVC-Confirm-Registration-Email
The application works and I set my IdentityConfig.vb file as follows:
Public Class EmailService
Implements IIdentityMessageService
Public Function SendAsync(message As IdentityMessage) As Task Implements IIdentityMessageService.SendAsync
Dim credentialUserName = "xxx@xxxx.com"
Dim sentFrom = "xxx@xxxx.com"
Dim pwd = "xxxxx"
Dim client As New System.Net.Mail.SmtpClient("xxxx.xxxx.xxx")
client.Port = xxxx
client.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network
client.UseDefaultCredentials = False
Dim credentials As Ne ...
Go to the complete details ...