Jump to content

Recommended Posts

Hello,

I am currently trying to develop a webpage that will allow the user to send emails to all the recipients that are located in a MySQL database. For instance, say there are 3 entries in the database at the moment. I want to be able to go through the database and look for those emails and then send them using the php mail() function. How would I do that? I already have my database created and the data inserted I'm just having some trouble figuring out which would be the best way to retrieve the data and send the email (from a form, obviously). Thanks in advance.

Link to comment
https://forums.phpfreaks.com/topic/171813-mailing-list-with-phpmysql/
Share on other sites

well iterating through the a mysql table is very simple

 

$sql = "Select email from mytable";

$query = mysql_query($sql);

while($row = mysql_fetch_assoc($query)){
//mail script here
}

 

I'm assuming you already know how to get data through a form. if not here is a tutorial: http://www.tizag.com/htmlT/forms.php

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.