Hey...
thinking that I may need to upgrade my skillset when it comes to ASP based
form-to-email scripting.

is CDOSYS the best still on a w2k3/iis6 box?

if so, can someone point me at the shortest, easiest to configure example
that positively works for sure in this environment?

i sigh, as CDONTs used to work perfectly for me and I hated that it was
dep'd by MS....

oh, and if CDOSYS is only one way - and maybe not the best way - is there a
component that will work better/quicker with an easy to use install and
config learning curve?

oh, why do I ask...gosh...got LOTSA troubles trying to get CDOSYS to work
efficiently on a new server...and thinking that there may be another answer
out there...

pointers here lads?

Jim

Re: Form-to-Email ASP scripts - what's the best one? by Anthony

Anthony
Thu Feb 28 01:48:58 CST 2008

"JVRudnick" <JVRudnick@discussions.microsoft.com> wrote in message
news:DF160857-5779-4CCC-A6AD-23B4198BDF3E@microsoft.com...
> Hey...
> thinking that I may need to upgrade my skillset when it comes to ASP based
> form-to-email scripting.
>
> is CDOSYS the best still on a w2k3/iis6 box?
>
> if so, can someone point me at the shortest, easiest to configure example
> that positively works for sure in this environment?
>
> i sigh, as CDONTs used to work perfectly for me and I hated that it was
> dep'd by MS....
>
> oh, and if CDOSYS is only one way - and maybe not the best way - is there
a
> component that will work better/quicker with an easy to use install and
> config learning curve?
>
> oh, why do I ask...gosh...got LOTSA troubles trying to get CDOSYS to work
> efficiently on a new server...and thinking that there may be another
answer
> out there...
>
> pointers here lads?
>


CDOSYS is the tool to learn. Typically its already installed on Win2K3 box.

Its pretty simple to use, especially if you have configured the mail
settings of your website in IIS manager. The following would a be minimal
example:-


Dim oMsg : Set oMsg = CreateObject("CDO.Message")

oMsg.To = "Bloke <bloke@somewere.com>"
oMsg.Subject = "Test"
oMsg.HTMLBody = "<html><body>Hello World</body></html>"
oMsg.Send


--
Anthony Jones - MVP ASP/ASP.NET



Re: Form-to-Email ASP scripts - what's the best one? by JVRudnick

JVRudnick
Thu Feb 28 08:07:02 CST 2008

Ah...thanks Anthony.

However I noted one item you mentionned as "especially if you have
configured the mail settings of your website in IIS manager..."

Exactly what are you referring to...I don't know where you might mean for
that?

?

Jim

PS will give that script a try too but I noted also that you made no call to
the libraries either....or any of my own "normal" code items... ? will this
still work then?

"Anthony Jones" wrote:

> "JVRudnick" <JVRudnick@discussions.microsoft.com> wrote in message
> news:DF160857-5779-4CCC-A6AD-23B4198BDF3E@microsoft.com...
> > Hey...
> > thinking that I may need to upgrade my skillset when it comes to ASP based
> > form-to-email scripting.
> >
> > is CDOSYS the best still on a w2k3/iis6 box?
> >
> > if so, can someone point me at the shortest, easiest to configure example
> > that positively works for sure in this environment?
> >
> > i sigh, as CDONTs used to work perfectly for me and I hated that it was
> > dep'd by MS....
> >
> > oh, and if CDOSYS is only one way - and maybe not the best way - is there
> a
> > component that will work better/quicker with an easy to use install and
> > config learning curve?
> >
> > oh, why do I ask...gosh...got LOTSA troubles trying to get CDOSYS to work
> > efficiently on a new server...and thinking that there may be another
> answer
> > out there...
> >
> > pointers here lads?
> >
>
>
> CDOSYS is the tool to learn. Typically its already installed on Win2K3 box.
>
> Its pretty simple to use, especially if you have configured the mail
> settings of your website in IIS manager. The following would a be minimal
> example:-
>
>
> Dim oMsg : Set oMsg = CreateObject("CDO.Message")
>
> oMsg.To = "Bloke <bloke@somewere.com>"
> oMsg.Subject = "Test"
> oMsg.HTMLBody = "<html><body>Hello World</body></html>"
> oMsg.Send
>
>
> --
> Anthony Jones - MVP ASP/ASP.NET
>
>
>

Re: Form-to-Email ASP scripts - what's the best one? by Anthony

Anthony
Thu Feb 28 16:08:36 CST 2008

"JVRudnick" <JVRudnick@discussions.microsoft.com> wrote in message
news:C1A72F5B-9C9D-4562-AA6A-BA094340FB26@microsoft.com...
> Ah...thanks Anthony.
>
> However I noted one item you mentionned as "especially if you have
> configured the mail settings of your website in IIS manager..."
>
> Exactly what are you referring to...I don't know where you might mean for
> that?
>


The server extensions tab of the site properties. You can define values
which are used as default values for the configuration object on the
CDO.Message.

--
Anthony Jones - MVP ASP/ASP.NET