Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: Anyone know how to do mass emailing?


Message #1 by Joseph Coppola <joco@e...> on Sun, 12 May 2002 14:15:06 -0400
I need to do some mass emailing (8000+) to subcribers of a newsletter.
I would also like people to be able to opt-out. Can I do this using
ASP/CDONTS, or I would use something else?

Any ideas?
Joe

Message #2 by "Aaron Fleming" <aaronf@w...> on Mon, 13 May 2002 09:05:19 -0400
ASP CDONTS will work...

-----Original Message-----
From: Joseph Coppola [mailto:joco@e...] 
Sent: May 12, 2002 2:15 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Anyone know how to do mass emailing?


I need to do some mass emailing (8000+) to subcribers of a newsletter. I
would also like people to be able to opt-out. Can I do this using
ASP/CDONTS, or I would use something else?

Any ideas?
Joe



---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20

Message #3 by "Drew, Ron" <RDrew@B...> on Mon, 13 May 2002 10:05:51 -0400
Using CDONTS
What made it work for me was to add to the SMTP properties:
	1) Run Internet Service Manager.
	2) Right click on SMTP to bring up the properties.
	3) Select the Delivery tab and then select Advanced from there.
	4) Enter the IP address of the Exchange Server in the "Smart
Host".
	   Place the IP address between square brackets [] e.g.
[123.123.123.123]

<%
    Function sendNewsletter(Author,Subject,Content)
        Dim mailObj
        Set mailObj =3D Server.CreateObject(<whatever>)
        <mailObj setup string>
        ...
        ...

        strSQL =3D "SELECT Name,Email FROM usertable"

        <whatever connection code>
        <whatever recordset code>

        Dim sentMails
        sentMails =3D 0
        While NOT <recordset>.EOF =3D True
            ...Setup recipient
            ...Setup subject
            ...Setup Content
            .... and so forth
            mailObj.<Send>
            sentMails =3D sentMails +1
            Response.Write "Mail sent to: " & <recordset>("Email") &
"<br />"& vbCrlf
        Wend
    End Function
%>

-----Original Message-----
From: Aaron Fleming [mailto:aaronf@w...]
Sent: Monday, May 13, 2002 9:05 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Anyone know how to do mass emailing?


ASP CDONTS will work...

-----Original Message-----
From: Joseph Coppola [mailto:joco@e...]
Sent: May 12, 2002 2:15 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Anyone know how to do mass emailing?


I need to do some mass emailing (8000+) to subcribers of a newsletter. I
would also like people to be able to opt-out. Can I do this using
ASP/CDONTS, or I would use something else?

Any ideas?
Joe



---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20



---

Improve your web design skills with these new books from Glasshaus.

Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20

  Return to Index