send email

  • Thread starter Thread starter Mike
  • Start date Start date
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?
 
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?
 
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
 
Back
Top