Sending mail through SMTP

  • Thread starter Thread starter Erwin Pant via DotNetMonster.com
  • Start date Start date
E

Erwin Pant via DotNetMonster.com

Hi all,

I'm trying to send mail via SMTP. My application is written in C# and I
can't seem to include the System.Web.Mail namespace at the top in my code.
I only get the System.Web.Services namespace. I do however get the
System.Web.Mail namespace if I'm using VB.NET. So why wouldn't I get it
for C# ??

Thanx

E
 
Erwin Pant via DotNetMonster.com said:
I'm trying to send mail via SMTP. My application is written in C# and I
can't seem to include the System.Web.Mail namespace at the top in my code.

Make sure your project contains a reference to "System.Web.dll".
 
I guess I should check before starting to freak out ! ;) My reference to
System.Web was missing !!

E
 
Back
Top