SMTP w/o 2.0

  • Thread starter Thread starter JPS
  • Start date Start date
J

JPS

I am trying ot create an email app using SMTP but I do not have .Net
2.0 so I cannot use System.Web.Mail. Any ideas or code samples would
be appreciated
 
JPS said:
I am trying ot create an email app using SMTP but I do not have .Net
2.0 so I cannot use System.Web.Mail. Any ideas or code samples would
be appreciated

System.Web.Mail is in 1.1 - it's more limited though. You might also
want to look at Indy:
http://www.indyproject.org/

Jon
 
Jon,
I tried using System.Web.Mail in .net Framework 1.1 and it still
doesn't work. I get the same error message that I am missing a
reference.
 
JPS said:
I tried using System.Web.Mail in .net Framework 1.1 and it still
doesn't work. I get the same error message that I am missing a
reference.

Did you try adding the reference to the System.Web assembly (which is
required to use the System.Web.Mail namespace)?
 
Indy is good, as Jon mentioned. Also, I like OpenSMTP which isn't quite as
"big" and is open source. Also, the Qucksoft people have a "community" type
freeware component that doesn't use CDO. I avoid CDO like the plague.
Peter
 
Back
Top