I'm working on app, which sends emails. I've created account on hotmail.
This is my code:
try
{
using (var smtpClient = new SmtpClient())
{
var mailAddressTo = new MailAddress(emailType.EmailAddress);
var mailAddressFrom = new MailAddress("id");
using (var mailMessage = new MailMessage(mailAddressFrom, mailAddressTo))
{
smtpClient.Host = "smtp.live.com";
smtpClient.Port = 587;
smtpClient.EnableSsl = true;
smtpClient.Credentials = new NetworkCredential("[email protected]", "pass");
mailMessage.Subject = emailType.EmailSubject;
smtpClient.Send(mailMessage);
}
}
}
catch (Exception ex)
{}
But it gives me exception:
Mailbox unavailable. The server response was: 5.3.4 Requested action not taken; We noticed some unusual activity in your Hotmail account. To help protect you, we've temporarily blocked your account.
I don't wanna use Gmail, because it requires phone number. How can i do that with hotmail?
thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…