Hi,

I run IIS 5.0 on windows 2000 server sp4. This server is connected to the
ISP with adsl modem.
I put ASP code (found on internet) in order to send emails with CDO: (see
below)
When running that page, i get the error: "HTTP 500 - Internal server error
Internet Explorer"
No idea why.
I wonder whether the first 4 lines must be between comments.
Another point: do i need to install SMTP service of my IIS server, or (what
i think) can i use the SMTP service of my ISP?

Thanks
Cas


<!--
METADATA
TYPE="typelib"
UUID="CD000000-8B95-11D1-82DB-00C04FB1625D"
NAME="CDO for Windows 2000 Library"
-->
<%
Set cdoConfig = CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(cdoSendUsingMethod) = cdoSendUsingPort
.Item(cdoSMTPServer) = "smtp_ of_ my_ ISP"
.Update
End With
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
.From = "fromme@eretr.be"
.To = "toyou@dfghdfg.be"
.Subject = "test with CDO"
.TextBody = "it works"
.Send
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>

Re: problem with sending emails with CDO by jeff

jeff
Mon Jul 19 08:48:45 CDT 2004

On Mon, 19 Jul 2004 10:42:54 +0200, "Cas" <fhffh@rt.sp> wrote:

>I run IIS 5.0 on windows 2000 server sp4. This server is connected to the
>ISP with adsl modem.
>I put ASP code (found on internet) in order to send emails with CDO: (see
>below)
>When running that page, i get the error: "HTTP 500 - Internal server error
>Internet Explorer"
>No idea why.

FAQ:

Why do I get a 500 Internal Server error for all ASP errors?
http://www.aspfaq.com/show.asp?id=2109

>I wonder whether the first 4 lines must be between comments.
>Another point: do i need to install SMTP service of my IIS server, or (what
>i think) can i use the SMTP service of my ISP?

Provided you have access to send through it, you can use any SMTP
server with CDO. That's what cdoSMTPServer is used for.

Jeff

>Thanks
>Cas
>
>
><!--
> METADATA
> TYPE="typelib"
> UUID="CD000000-8B95-11D1-82DB-00C04FB1625D"
> NAME="CDO for Windows 2000 Library"
>-->
><%
> Set cdoConfig = CreateObject("CDO.Configuration")
> With cdoConfig.Fields
> .Item(cdoSendUsingMethod) = cdoSendUsingPort
> .Item(cdoSMTPServer) = "smtp_ of_ my_ ISP"
> .Update
> End With
> Set cdoMessage = CreateObject("CDO.Message")
> With cdoMessage
> Set .Configuration = cdoConfig
> .From = "fromme@eretr.be"
> .To = "toyou@dfghdfg.be"
> .Subject = "test with CDO"
> .TextBody = "it works"
> .Send
> End With
> Set cdoMessage = Nothing
> Set cdoConfig = Nothing
>%>
>


Re: problem with sending emails with CDO by Aaron

Aaron
Mon Jul 19 08:46:45 CDT 2004

> When running that page, i get the error: "HTTP 500 - Internal server error
> Internet Explorer"
> No idea why.

Find out what the real error message is.
http://www.aspfaq.com/2109



Re: problem with sending emails with CDO by Ray

Ray
Mon Jul 19 09:03:20 CDT 2004

You first need to find out what the real error is by turning off "friendly
error messages" in Internet Explorer.

http://www.aspfaq.com/show.asp?id=2109

Ray at work


"Cas" <fhffh@rt.sp> wrote in message
news:uDS%23$yWbEHA.2544@TK2MSFTNGP10.phx.gbl...
> Hi,
>
> I run IIS 5.0 on windows 2000 server sp4. This server is connected to the
> ISP with adsl modem.
> I put ASP code (found on internet) in order to send emails with CDO: (see
> below)
> When running that page, i get the error: "HTTP 500 - Internal server error
> Internet Explorer"
> No idea why.



Re: problem with sending emails with CDO by Cas

Cas
Mon Jul 19 09:35:30 CDT 2004

thanks

"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:e5IyYkZbEHA.3476@tk2msftngp13.phx.gbl...
> You first need to find out what the real error is by turning off "friendly
> error messages" in Internet Explorer.
>
> http://www.aspfaq.com/show.asp?id=2109
>
> Ray at work
>
>
> "Cas" <fhffh@rt.sp> wrote in message
> news:uDS%23$yWbEHA.2544@TK2MSFTNGP10.phx.gbl...
> > Hi,
> >
> > I run IIS 5.0 on windows 2000 server sp4. This server is connected to
the
> > ISP with adsl modem.
> > I put ASP code (found on internet) in order to send emails with CDO:
(see
> > below)
> > When running that page, i get the error: "HTTP 500 - Internal server
error
> > Internet Explorer"
> > No idea why.
>
>



Re: problem with sending emails with CDO by Cas

Cas
Mon Jul 19 09:37:56 CDT 2004

Maybe one more point:
the first four lines are between comments, so how can they be interpreted by
ASP?
Thanks


"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:e5IyYkZbEHA.3476@tk2msftngp13.phx.gbl...
> You first need to find out what the real error is by turning off "friendly
> error messages" in Internet Explorer.
>
> http://www.aspfaq.com/show.asp?id=2109
>
> Ray at work
>
>
> "Cas" <fhffh@rt.sp> wrote in message
> news:uDS%23$yWbEHA.2544@TK2MSFTNGP10.phx.gbl...
> > Hi,
> >
> > I run IIS 5.0 on windows 2000 server sp4. This server is connected to
the
> > ISP with adsl modem.
> > I put ASP code (found on internet) in order to send emails with CDO:
(see
> > below)
> > When running that page, i get the error: "HTTP 500 - Internal server
error
> > Internet Explorer"
> > No idea why.
>
>



Re: problem with sending emails with CDO by Ray

Ray
Mon Jul 19 09:51:29 CDT 2004

It's kinda like an include, in a way, but it's "including" a COM type
library instead of a file. ASP looks for the <!-- METADATA "comment."

Ray at work

"Cas" <fhffh@rt.sp> wrote in message
news:OZaOZ5ZbEHA.4092@TK2MSFTNGP10.phx.gbl...
> Maybe one more point:
> the first four lines are between comments, so how can they be interpreted
> by
> ASP?
> Thanks
>
>
> "Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
> message news:e5IyYkZbEHA.3476@tk2msftngp13.phx.gbl...
>> You first need to find out what the real error is by turning off
>> "friendly
>> error messages" in Internet Explorer.
>>
>> http://www.aspfaq.com/show.asp?id=2109
>>
>> Ray at work
>>
>>
>> "Cas" <fhffh@rt.sp> wrote in message
>> news:uDS%23$yWbEHA.2544@TK2MSFTNGP10.phx.gbl...
>> > Hi,
>> >
>> > I run IIS 5.0 on windows 2000 server sp4. This server is connected to
> the
>> > ISP with adsl modem.
>> > I put ASP code (found on internet) in order to send emails with CDO:
> (see
>> > below)
>> > When running that page, i get the error: "HTTP 500 - Internal server
> error
>> > Internet Explorer"
>> > No idea why.
>>
>>
>
>



Re: problem with sending emails with CDO by Aaron

Aaron
Mon Jul 19 09:58:57 CDT 2004

It's a pre-processing directive, like #include or @language. This specific
directive tells ASP to load the CDO library so the code can use named
constants instead of their numeric equivalents. You can do a similar thing
for ado constants as an alternative to loading the quite hefty adovbs.inc.

--
http://www.aspfaq.com/
(Reverse address to reply.)




"Cas" <fhffh@rt.sp> wrote in message
news:OZaOZ5ZbEHA.4092@TK2MSFTNGP10.phx.gbl...
> Maybe one more point:
> the first four lines are between comments, so how can they be interpreted
by
> ASP?



Re: problem with sending emails with CDO by Cas

Cas
Mon Jul 19 10:18:52 CDT 2004

Ok, thanks again


"Aaron [SQL Server MVP]" <ten.xoc@dnartreb.noraa> wrote in message
news:ua7c3DabEHA.4032@TK2MSFTNGP11.phx.gbl...
> It's a pre-processing directive, like #include or @language. This
specific
> directive tells ASP to load the CDO library so the code can use named
> constants instead of their numeric equivalents. You can do a similar
thing
> for ado constants as an alternative to loading the quite hefty adovbs.inc.
>
> --
> http://www.aspfaq.com/
> (Reverse address to reply.)
>
>
>
>
> "Cas" <fhffh@rt.sp> wrote in message
> news:OZaOZ5ZbEHA.4092@TK2MSFTNGP10.phx.gbl...
> > Maybe one more point:
> > the first four lines are between comments, so how can they be
interpreted
> by
> > ASP?
>
>