Jan
29
How do I send out about 10000 emails (not spam) to people who signed up for a newsletter?
January 29th, 2009 posted by
admin
I am learning php and have sent out some emails this way but I need to add images and things to it. Is this possable? If so, what script would I use?
Yes, I asked it before, but I changed it and will ask it until I get an answer that I need. Thanks


Taylorsci says:
February 1st, 2009 at 5:12 am
add all of them to your contacts and then give them all the nick name of all type all into the to bar of your email and send the message.
davidinark says:
February 2nd, 2009 at 7:52 am
Didn’t you ask this already?
sepehr says:
February 5th, 2009 at 5:41 pm
There is software called “Super mail sender” Try to use it.
Here is its link:
Computer Jock says:
February 8th, 2009 at 6:18 am
I see you are getting answers from the non-PHP users and probably not what you are after. My first answer is if you want to plan around to learn PHP, as it’ll put your hands on it more. My second answer is if you just want to get it done and don’t want to see under the hood as much.
Rather than try to create the email directly from PHP, what I’d suggest is that you first create an email and save it into a text file. Then, open the email and replace the relevant pieces with your PHP script and send it out using the methods you are already using.
The easier and better way would be to use a class written by others and just tie it into your script. Take a look at the link below to get a taste of the joy that is PEAR. It’s an open source repository for classes and modules for PHP. Very good stuff, very free.