Do I need to add anything in my _AppStart.cshtml file, like this? http://msdn.microsoft.com/en-us/library/gg548376%28v=vs.99%29.aspx
My _AppStart.cshtml code:
@{ WebSecurity.InitializeDatabaseConnection("StarterSite", "UserProfile", "UserId", "Email", true); WebMail.SmtpServer = "mail.***.com"; WebMail.EnableSsl = false; WebMail.UserName = "noreply@***.com"; WebMail.Password = "****"; WebMail.From = "noreply@***.com"; }