A script to send email to many people at a time

They have: 67 posts

Joined: Aug 2001

Folks,

I also need a script or a tool that will allow me to send email to many people whithout publishing their email address to my website users.

Here is an example, if have 50 people' email addresses and I want to send a blind copy email to each one of them is there a script or a tool able to do so easily?

Do you guys have a script or a tool that I could use?

Please visit my matchspecial.com and sign up with a picture it is free, free sign up please.

They have: 10 posts

Joined: Sep 2001

Im a tad lost. Basicly you do not want others to see the whole list of emails right?

I guess you are looking for a maillist type program. One off the top of my head that does not show all emails is from solutionscripts.com
I used it and was happy. Nothing to fancy but you dont really need much for it.

They have: 29 posts

Joined: Sep 2001

If you are using ASP on IIS, you could loop through the record set and use CDONTS to send the email. It might look something like this

Dim objCDO
set rs2 = cn.execute("select distinct email_address from people")

while not rs2.eof
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = rs2("email_address")
objCDO.From = "[email protected]"
objCDO.Subject = "Your Subject"
' this line get the comment from a form field
objCDO.Body = getparam("comments")
objCDO.MailFormat = 0
objCDO.Send
'set the object = nothing
Set objCDO = Nothing
rs2.movenext
wend

If your not using ASP and IIS I wouldn't know Wink

Mike

They have: 7 posts

Joined: Sep 2001

If you are thinking about mailing list programs, you can check out the following:

MyMail -> http://scripts.codingclick.com/MyMail/
MaxEmailpro -> http://www.sitelogics.net/maxemail/

Alternatively you can check out the following URLs and look for mailing list managers:

http://hotscripts.com/
http://cgi.resourceindex.com/
http://php.resourceindex.com/

Aletia Hosting: High Quality, Full- Featured Hosting
PHP, mySQL, multiple domain hosting and more
http://AletiaHosting.com - [email protected]
AOL Instant Messaging: AletiaCorp - ICQ: 111160011

They have: 25 posts

Joined: Oct 2001

Try Cgispy.com for a remotely hosted script just for that reason. You can also give users the option to join the mainling list on your web site.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.