Код: Выделить всё
var token = WebSecurity.CreateUserAndAccount(
model.UserName,
model.Password,
new
{
model.Email
},
true);
var confirmationUrl = System.Web.HttpContext.Current.Request.Url.GetLeftPart(UriPartial.Authority) +
"/Account/ConfirmAccount/" + token;
dynamic email = new Email("RegisterConfirmation");
email.To = model.Email;
email.UserName = model.UserName;
email.ConfirmationUrl = confirmationUrl;
email.Send();
Код: Выделить всё
HotmailЕсть идеи о том, что является причиной этого?
Подробнее здесь: https://stackoverflow.com/questions/155 ... in-hotmail
Мобильная версия