up vote 5 down vote favorite
5
share [g+] share [fb]

I have a .Net application. I want this application to send an email to me. How do I implement this without installing an SMTP server?

link|improve this question

If you need example code, here's some that shows you how to send an email using Gmail's SMTP service. gatekiller.co.uk/Post/Send_Emails_with_.NET_and_Gmail – GateKiller Mar 12 '09 at 9:51
@GateKiller: Thank you for the link, I appreciate it – Germstorm Mar 21 '09 at 10:46
feedback

4 Answers

up vote 8 down vote accepted

Using an SmtpClient to send a MailMessage does not require you to have a server on your local machine.

Your e-mail service provider is the one with the server (e.g. smtp.gmail.com), and your SmtpClient talks to it.

link|improve this answer
feedback

You can't send email without the services of a SMTP server, there is of course no need for you to install one, just point your code at your ISPs SMTP server or your companies Exchange server (or what ever they use).

link|improve this answer
feedback

This article by Peter Bromberg on eggheadcafe.com

C# SMTP Mail without SMTP Service or CDO

explains how to send email without relying on an SMTP service:

Sending email via TCP using the native SMTP RFC commands "HELO", "MAIL From", RCPT TO", etc. is no big deal. That's one of the first tricks we learn with Telnet. Finding or writing managed code that will do so reliably is another story. The code in the class that follows is not my original code - I've cobbled it together from three different sample sources, fixing namespaces, error handling, and other minor items, changing console code to class library code, and providing a complete Winforms - based test harness front end that illustrates its correct usage.

I've also included sample code to correctly process and add a mail attachment via an OpenFileDialog here. This code MIME encodes and transmits the attachment(s) according to the specification.

link|improve this answer
This still relies on there being an SMTP server on the other end; I'm not sure what benefit you're getting not using SmtpClient and MailMessage... – Daniel LeCheminant Mar 12 '09 at 9:42
Ehm, there always MUST be an SMTP server on the other side. This example shows you sending mail using the SMTP protocol explicitly in your code. – splattne Mar 12 '09 at 9:52
@splattne: Okay ... I guess it could be interesting/fun to implement the protocol yourself ;] – Daniel LeCheminant Mar 12 '09 at 10:01
feedback

Why don't you contact the smtp service of your mail provider?

link|improve this answer
It is generally not possible to connect to the SMTP service outside of the provider's network. A GMail account could be used though. – kgiannakakis Mar 12 '09 at 9:35
Ummm, you mean all other providers receive mail by magic? – soulmerge Mar 12 '09 at 9:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.