|
 |
asp_cdo thread: CDONTS and other SMTP servers.
Message #1 by <nickm@s...> on Tue, 12 Dec 2000 12:09:50 -0500
|
|
Hi:
Is there a way to get CDONTS to use an SMTP server other than the default
one that somes with WIN2k?
Stefan
---
You are currently subscribed to asp_cdo as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_cdo-$subst('Recip.MemberIDChar')@p2p.wrox.com
Message #2 by "Tom Molskow" <tmolskow@h...> on Wed, 13 Dec 2000 10:10:03 -0500
|
|
I know you can send CDONTS objects via SMTP mail:
<%
dim MyMail
Set MyMail = Server.CreateObject("CDONTS.NewMail")
MyMail.Send = "someone@e...", "My E-Mail Subject", "My E-Mail Message",
0 'zero for low importance, 1 for normal, 2 for high
Set MyMail = Nothing
%>
>From: <nickm@s...>
>Reply-To: "ASP CDO" <asp_cdo@p...>
>To: "ASP CDO" <asp_cdo@p...>
>Subject: [asp_cdo] CDONTS and other SMTP servers.
>Date: Tue, 12 Dec 2000 12:09:50 -0500
>
>Hi:
>
>Is there a way to get CDONTS to use an SMTP server other than the default
>one that somes with WIN2k?
>
>Stefan
>
>
Tom Molskow
Developer/Programmer
Microsoft Web Technologies
---
You are currently subscribed to asp_cdo as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_cdo-$subst('Recip.MemberIDChar')@p2p.wrox.com
Message #3 by <nickm@s...> on Wed, 13 Dec 2000 10:33:44 -0500
|
|
From what I can gather the CDONTS is hard coded to hit the MS SMTP server
only. So you cannot use another vendors SMTP or POP 3 server.
Stefan
----- Original Message -----
From: "Tom Molskow" <tmolskow@h...>
To: "ASP CDO" <asp_cdo@p...>
Sent: Wednesday, December 13, 2000 10:10 AM
Subject: [asp_cdo] Re: CDONTS and other SMTP servers.
> I know you can send CDONTS objects via SMTP mail:
>
> <%
> dim MyMail
> Set MyMail = Server.CreateObject("CDONTS.NewMail")
> MyMail.Send = "someone@e...", "My E-Mail Subject", "My E-Mail
Message",
> 0 'zero for low importance, 1 for normal, 2 for high
> Set MyMail = Nothing
> %>
>
> >From: <nickm@s...>
> >Reply-To: "ASP CDO" <asp_cdo@p...>
> >To: "ASP CDO" <asp_cdo@p...>
> >Subject: [asp_cdo] CDONTS and other SMTP servers.
> >Date: Tue, 12 Dec 2000 12:09:50 -0500
> >
> >Hi:
> >
> >Is there a way to get CDONTS to use an SMTP server other than the default
> >one that somes with WIN2k?
> >
> >Stefan
> >
> >
> Tom Molskow
> Developer/Programmer
> Microsoft Web Technologies
>
>
---
You are currently subscribed to asp_cdo as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_cdo-$subst('Recip.MemberIDChar')@p2p.wrox.com
|
|
 |