I tried this but it didn't work and i get this message
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object: 'CDONTS.NewMail'
>From: Mark Eckeard <meckeard2000@y...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] RE: I need help w/ email sending
>Date: Mon, 27 Aug 2001 07:25:23 -0700 (PDT)
>
>CDONTS example of email:
>
>'Dim our var.
>Dim ObjSendMail
>
>'Create mail object.
>Set ObjSendMail = CreateObject("CDONTS.NewMail")
>
>'Pass in values with a variable (var)
>ObjSendMail.From = var
>ObjSendMail.To = var
>ObjSendMail.Cc = var
>ObjSendMail.Bccs = var
>ObjSendMail.Importance = var
>ObjSendMail.Subject = var
>ObjSendMail.Body = var
>
>'Send the mail.
>ObjSendMail.Send
>
>'Set to nothing to free resources.
>Set ObjSendMail = Nothing
>
>Hope this helps,
>
>Mark
>--- "Alex Shiell, ITS, EC, SE"
><alex.shiell@s...> wrote:
> > CDONTS should be installed by default with IIS
> >
> > -----Original Message-----
> > From: Monique Angelich [mailto:mangelich@m...]
> > Sent: 25 August 2001 10:49
> > To: ASP Web HowTo
> > Subject: [asp_web_howto] I need help w/ email
> > sending
> >
> >
> >
> > I need to send an email without using an installed
> > asp object, and I
> > have no way of finding out the server
> > configurations.
> >
> > A friend of mine is getting help from me to write a
> > simple email sending
> > program, but the hosting company she is trying to
> > work with is not
> > pleased at HER doing the development rather than
> > them.
> >
> > Is it POSSIBLE to send an email without an installed
> > program?
> >
> > HELP!!!
> > Moe
> >
>