Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / New Users / July 2006

Tip: Looking for answers? Try searching our database.

sending mails

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Crespo - 04 Jul 2006 10:05 GMT
hi,every one!
   I have a question about sending emails.My codes works well over some
smtp servers,but doesn't over the others. My codes is listed belowed:
   try
  {
    MailMessage mailObj = new MailMessage();
    mailObj.To.Add(receipientAddr);
    mailObj.From = new MailAddress(senderAddr);

    mailObj.Subject = "very good";
    mailObj.Body = "thank you";

    mailObj.IsBodyHtml = true;
    mailObj.Priority = MailPriority.High;
    mailObj.BodyEncoding = System.Text.Encoding.UTF8;

   System.Net.Mail.SmtpClient client = new
System.Net.Mail.SmtpClient(smtpServerIP);
   client.UseDefaultCredentials = false;
   mailObj.SubjectEncoding = System.Text.Encoding.UTF8;
   client.Credentials = new
System.Net.NetworkCredential(this.tb_mailUserName.Text,
this.tb_mailUserPassword.Text);
   client.DeliveryMethod = SmtpDeliveryMethod.Network;
    client.Send(mailObj);

  }
  catch(Exception ex)
  {
    MessageBox.Show(ex.Message.ToString());
    return;
  }

  when smtpServerIP is specified with some smtp server ips, the mail can be
delievered correctly.But over some smtp servers such as "smtp.21cn.com",the
codes didn't throw any exception and seemed to have work well,but when I
logined mail.21cn.com,I could not  find the expectedly incoming mail. Could
anyone help me?

Crespo
2006-07-03
sloan - 05 Jul 2006 14:42 GMT
check the folders in

c:\inetpub\mailroot\

and see if they're being orphaned there.

> hi,every one!
>     I have a question about sending emails.My codes works well over some
[quoted text clipped - 37 lines]
> Crespo
> 2006-07-03

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.