Hi there.
I'm relatively new to php. I have set up a database which collects information from users; one piece of the information includes their email address.
What I'd like to know is how I can email all of these members at once. I'm assuming I need to use a form, with a script that connects to the database. However, I'm unsure how to approach this.
Again, I'm fairly new, so take it easy on me.....
Thanks in advance.
sending mail to all addresses in database
Moderator: General Moderators
-
some_new_guy
- Forum Newbie
- Posts: 10
- Joined: Thu Mar 25, 2004 10:58 am
Look into mail(): http://www.php.net/manual/en/function.mail.php . There may be a way to email multiple addresses at once.
Another way to do it is to send an individual email for each email address, rather than one email for everyone.
Another way to do it is to send an individual email for each email address, rather than one email for everyone.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.