oMessage.To = "[EMAIL PROTECTED]";
oMessage.From = "[EMAIL PROTECTED]";
oMessage.Subject = "Test message sent using System.Web.Mail";
oMessage.Body = "This is a test message.";
oMessage.Fields["http://schemas.microsoft.com/cdo/configuration/sendusing"] = 2;
oMessage.Fields["http://schemas.microsoft.com/cdo/configuration/smtpserver"] = "smtp.mail.yahoo.com ";
oMessage.Fields["http://schemas.microsoft.com/cdo/configuration/sendusername"] = "[EMAIL PROTECTED] ";
oMessage.Fields["http://schemas.microsoft.com/cdo/configuration/sendpassword"] = "123456789";
oMessage.Fields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] = 1;
System.Web.Mail.SmtpMail.SmtpServer = "smtp.mail.yahoo.com";
System.Web.Mail.SmtpMail.Send(oMessage);
Any one can help
| Basic programming language | C programming language | Computer programming languages |
| Programming languages | C++ programming language | Software programming language |
YAHOO! GROUPS LINKS
- Visit your group "Microsofts_C_Sharp" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
