About 28 results
Open links in new tab
  1. Error in sending email by using smtpClient

    Oct 14, 2021 · Hi, I am using the following code to send email using smtpClient. Following code was running successfully and was sending emails. But now I am getting error on my PC ...

  2. System.Net.Mail.SmtpClient - Error when sending to distribution list.

    Jun 4, 2013 · I don't think SMTP has access to the distribution list. SMTP prepares the email message and send the email out over the network,. All the exchange server does is forwards the over the …

  3. Send mail using VB.Net with HTML formate.

    Oct 7, 2021 · I have to send a mail using my application in vb.net. I am able to send mail But while I am sending mail message, I am using HTML tags to format the text, but for some mail server the mail …

  4. Sending automatic emails from C# - social.msdn.microsoft.com

    Dec 27, 2005 · the code i tried is System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage (); message.To.Add ("[email protected]"); …

  5. Sending mail to group email address of outlook

    May 8, 2019 · Based on your description, you want to send email to group email address of outlook form your local smtp server.

  6. Unable to read data from the transport connection: …

    Oct 7, 2021 · I get "System.IO.IOException: Unable to read data from the transport connection: net_io_connectionclosed." but not every time? Stack Trace:

  7. Best way to send a file - social.msdn.microsoft.com

    Jan 29, 2009 · You can use the event log if you'd like to, using the EventLog class, and you can send an email using the SmtpClient class. There's also various trace writers and debug writers, etc. Event log …

  8. sending mail via outlook dll - social.msdn.microsoft.com

    Oct 7, 2021 · Example SmtpClient SmtpServer = new SmtpClient ("smtp.live.com"); var mail = new MailMessage (); mail.From = new MailAddress ("[email protected]"); mail.To.Add …

  9. allow file download - social.msdn.microsoft.com

    Oct 7, 2021 · What would be the best way to create a landing page where anyone can enter an email address and then download a zip file.

  10. Sending Email - social.msdn.microsoft.com

    Sep 13, 2008 · STACKTRACE: at System.Net.Mail.SmtpClient.Send (MailMessage message) at ISLibrary.Mail.SendMail (String Body, String Subject, MailAddress ToMail, MailAddress FromMail, …