where's the mail package

  • Thread starter Thread starter Dica
  • Start date Start date
D

Dica

i'm trying to send email from within a console program and can't import the
namespace System.Web.Mail (not found). i've got the standard .Net2003 IDE.
is it possible the package isn't included?

tks
 
Dica,

When you cannot import something, than you have first to set a reference to
that.
One of the ways is using Project -> add references.

I hope this helps,

Cor
 
Cor Ligthert said:
Dica,

When you cannot import something, than you have first to set a reference to
that.
One of the ways is using Project -> add references.

I hope this helps,

Cor

thank you, cor. that fixed it.
 
Dica said:
i'm trying to send email from within a console program and can't import
the
namespace System.Web.Mail (not found).

Add a reference to "System.Web.dll".
 
Back
Top