How do you send an email message?
-
How do you send an email message using C# WITHOUT using System.Web.Mail namespace? I have a windows service that does some monitoring and I want it to send out an email after some trigger. Thanks in advance, David P.S. AGAIN...WITHOUT USING THE SYSTEM.WEB.MAIL NAMESPACE!!!!!!
-
How do you send an email message using C# WITHOUT using System.Web.Mail namespace? I have a windows service that does some monitoring and I want it to send out an email after some trigger. Thanks in advance, David P.S. AGAIN...WITHOUT USING THE SYSTEM.WEB.MAIL NAMESPACE!!!!!!
You can send email using C# WITHOUT SYSTEM.WEB.MAIL NAMESPACE, using SMTP, there are plenty of samples here in CP. P.S. AGAIN...WITHOUT USING THE SYSTEM.WEB.MAIL NAMESPACE!!!!!! My latest articles: Desktop Bob - Instant CP notifications XOR tricks for RAID data protection
-
You can send email using C# WITHOUT SYSTEM.WEB.MAIL NAMESPACE, using SMTP, there are plenty of samples here in CP. P.S. AGAIN...WITHOUT USING THE SYSTEM.WEB.MAIL NAMESPACE!!!!!! My latest articles: Desktop Bob - Instant CP notifications XOR tricks for RAID data protection
:laugh:
-
How do you send an email message using C# WITHOUT using System.Web.Mail namespace? I have a windows service that does some monitoring and I want it to send out an email after some trigger. Thanks in advance, David P.S. AGAIN...WITHOUT USING THE SYSTEM.WEB.MAIL NAMESPACE!!!!!!
OpenSmtp on SourceForge does a nice job and it works on all Win platforms and it does NOT use THE SYSTEM.WEB.MAIL NAMESPACE!!!!!! :) Before you criticize a man, walk a mile in his shoes. That way, when you do criticize him, you'll be a mile away and have his shoes.
-
How do you send an email message using C# WITHOUT using System.Web.Mail namespace? I have a windows service that does some monitoring and I want it to send out an email after some trigger. Thanks in advance, David P.S. AGAIN...WITHOUT USING THE SYSTEM.WEB.MAIL NAMESPACE!!!!!!
-
How do you send an email message using C# WITHOUT using System.Web.Mail namespace? I have a windows service that does some monitoring and I want it to send out an email after some trigger. Thanks in advance, David P.S. AGAIN...WITHOUT USING THE SYSTEM.WEB.MAIL NAMESPACE!!!!!!
You need to use sockets library to initiate a tcp/ip connection over port 25 and supply the necessary SMTP commands to send an email. This requires an SMTP server though. It shouldn't be hard to code a simple email sending application but if you would like to use features like mime emails, attachments etc, you'll need an emailing component like devMail.Net- http://www.devmail.net[^] Hakan :suss:
-
How do you send an email message using C# WITHOUT using System.Web.Mail namespace? I have a windows service that does some monitoring and I want it to send out an email after some trigger. Thanks in advance, David P.S. AGAIN...WITHOUT USING THE SYSTEM.WEB.MAIL NAMESPACE!!!!!!
I didnt mean for my post to stir up so many flames, I just wanted to make sure that I didnt get responses saying to use the system.web.mail namespace as I did in previous postings. Thanks for the commerical suggestions. I did find the following: http://www.c-sharpcorner.com/internet/simpleSMTPMailer.asp