|
-
Nov 9th, 2006, 05:06 AM
#1
Thread Starter
New Member
[1.0/1.1] can not send email to hotmail
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);
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|