i cant send mail to yahoo mail or hotmail while i can send my other mail
accounts (pop3)
is it becouse yahoo and hotmail is web-based mail
here is the code
MailMessage mailMsg = new MailMessage();
mailMsg.From = from;
from = from + from;
mailMsg.To = "xx*@yahoo.com";
mailMsg.Subject = "from";
mailMsg.Body = "body"
SmtpMail.Send(mailMsg );
Console.Write("ok");
}
code does not return any errors and it sends mail to my other accounts(which
i reach and control with pop3) but mail messages send to yahoo can not be
delivered(still there is no error returning)
whats my problem???
thanks in advance....