send email

M

Mike

Is there a way in .NET 2.0 to send email without the use of an SMTP server, or is a SMTP server have to be used?
 
J

Juan T. Llibre

You have to use an SMTP server...or a POP3 server.



Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
Is there a way in .NET 2.0 to send email without the use of an SMTP server, or is a SMTP server have to be used?
 
R

Roland Dick

Hi Mike,
Is there a way in .NET 2.0 to send email without the use of an SMTP
server, or is a SMTP server have to be used?

you can access the network and send whatever you like with .NET, it just
doesn't have classes for all possible protocols. I am not aware of a
standard protocol for sending mail other than SMTP. What exactly are you
looking for?

If you just want to avoid the hassle of configuring a SMTP server
connection in your application, there is an option to write outgoing
mail to the IIS mail pickup directory from where a mail agent picks up
and processes mails. It is up to the mail agent to implement the sending
protocol then.

Hope this helps,

Roland
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top