I am unable to send email to hotmail but i am able to send mail to all other mailing address.please solve my problem.I dont get any error its just i canot recieve email in hotmail.this is my code


MailMessage objMailMessage=new MailMessage();

objMailMessage.Fields.Add( "http://schemas.microsoft.com/cdo/configuration/smtpauthenticate",1 );
objMailMessage.Fields.Add( "http://schemas.microsoft.com/cdo/configuration/sendusername","[email protected]" );
objMailMessage.Fields.Add( "http://schemas.microsoft.com/cdo/configuration/sendpassword","password" );

objMailMessage.To=txtFriendsEmail.Text;
objMailMessage.From="[email protected]";
objMailMessage.Subject="subject"
MailMessage.BodyFormat=MailFormat.Html;
objMailMessage.Body="here is my message body"
SmtpMail.SmtpServer="localhost";
SmtpMail.Send(objMailMessage);