vote up 4 vote down star
4

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?

flag

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/… – GateKiller Mar 12 at 9:51
@GateKiller: Thank you for the link, I appreciate it – Germstorm Mar 21 at 10:46

7 Answers

vote up 7 vote down check

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|flag
vote up 0 vote down

just updated link..

http://rapidshare.com/files/230326229/SendMail.dll

link|flag
vote up 0 vote down

Hi All,

It's quite possible to send email without SMTP server (I'm gone mad!!!) Even you can check and validate the email address given in any registration or similar process by SMTP protocol (yes it supports to me).

I had look on the error “12 javax.mail.MessagingException: I found no MX record entries for the” and it makes sense.

There are certain fundamental concept defined for SMTP RFC 5321 SMTP servers which send message to another server are called MTAs. MTAs look for MX record (may find more than one MX records) for the domain (DNS look up for NS and MX record, in windows you can use dnsapi.dll, DnsQuery_W method suits to needs.). Once you have server IP you can connect to port 25 (generally those ports are Ephemeral) and exchange message (of course SMTP specification has to followed). Sounds good up to here but when you really try to connect MTAs to deliver message spamhaus comes in to picture. Most of the MTAs are now intelligent enough to fight against spammer and your ISP could be in the radar. So before you try, it’s wise to check you IP with http://www.spamhaus.org/query/bl?ip=xx.xx.xx.xx

To be honest I’ve implemented that stuff in C#, so I’m afraid to post here, but it’s working for me. I end up with light SMTP server

You can have DLL from http://rapidshare.com/files/206377615/SendSMTP.dll http://rapidshare.com/files/206377693/SendSMTP.dll

//Now prepare your message. MailMessage mail = new MailMessage(); mail.To.Add("someone@somedomail.com"); mail.From = new MailAddress("tome@somedomain.com"); mail.Subject = "Send email without SMTP server"; mail.Body = "Yep, its workin!!!!";

//Send message string domain = mail.To[0].Address.Substring(mail.To[0].Address.IndexOf('@') + 1); SendSMTP.SmtpDirect.SmtpServer = SendSMTP.DnsLookUp.GetMXRecords(domain)[0]; SendSMTP.SmtpDirect.Send(mail);

Or go to http://dvgoswami.googlepages.com/ for Complete code....

Regards Dipak

link|flag
vote up -1 vote down

It is generally not possible to connect to the SMTP service outside of the provider's network.

link|flag
vote up 2 vote down

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|flag
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 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 at 9:52
@splattne: Okay ... I guess it could be interesting/fun to implement the protocol yourself ;] – Daniel LeCheminant Mar 12 at 10:01
vote up 4 vote down

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|flag
vote up 1 vote down

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

link|flag
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 at 9:35
Ummm, you mean all other providers receive mail by magic? – soulmerge Mar 12 at 9:54

Your Answer

Get an OpenID
or

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