Jump to content

Recommended Posts

So this is probably very simple, but I can't get it.

 

Trying to send 1 email to a list of addresses from a mysql query.

 

pcontact is the email addresses, here's the query to get them

$query_rsFind = "
SELECT pcontact
FROM user_logins
WHERE (pcontact_type = 'SMS' 
OR pcontact_type = 'Email')
AND pcontact_active = '1'
AND active = '1'
";
$rsFind = mysql_query($query_rsFind, $cnepix) or die(mysql_error());
$row_rsFind = mysql_fetch_array($rsFind);

 

What i'm trying to do is put these addresses into 1 variable to send separated by commas like

[email protected], [email protected], [email protected]

 

So ultimately, want this

mail($sendTo, $subject, $body);

 

Arg, hard to get across what I can't get.  Basically want the results from my query to do this

$sendTo = [email protected], [email protected], [email protected]

Link to comment
https://forums.phpfreaks.com/topic/212159-php-email-help/
Share on other sites

$query = mysql_query("SELECT all the results in the MySQL query.

 

Then you could use, $rows = mysql_num_rows($query)

 

This will tell you the number of results found.

 

Then you could run a for loop:

for($i=0;$i<$rows;++$i)
{
$row = mysql_fetch_row($query); //this will take one row of results from the query
//then do any mailing you wish to do on the returned row (in this case $row[0] as your first result back should be the emails)
}
//Once the loop has reached the end it will have taken and used all the results fround from you query

 

 

For multiple emails you are advised to use php mailer though

 

Link to comment
https://forums.phpfreaks.com/topic/212159-php-email-help/#findComment-1105534
Share on other sites

Something like this should give you the recipient string you're looking for, assuming pcontact is a field that holds email addresses:

 

// Set the SQL (include WHERE conditions)
$result = mysql_query('SELECT pcontact FROM user_logins');

// Initialize the array that holds the recipients
$recipients = array();

// Iterate over each email address result
while ($row = mysql_fetch_assoc($result))
{
    // Store each email address result in the recipient array
    $recipients[] = $row['pcontact'];
} // while()
// Turn the array into a string separated by commas
$recipients = implode(', ',$recipients); // "[email protected], [email protected], [email protected]"

Link to comment
https://forums.phpfreaks.com/topic/212159-php-email-help/#findComment-1105535
Share on other sites

Something like this should give you the recipient string you're looking for, assuming pcontact is a field that holds email addresses:

 

// Set the SQL (include WHERE conditions)
$result = mysql_query('SELECT pcontact FROM user_logins');

// Initialize the array that holds the recipients
$recipients = array();

// Iterate over each email address result
while ($row = mysql_fetch_assoc($result))
{
    // Store each email address result in the recipient array
    $recipients[] = $row['pcontact'];
} // while()
// Turn the array into a string separated by commas
$recipients = implode(', ',$recipients); // "[email protected], [email protected], [email protected]"

 

Worked great, tanks a million!

Link to comment
https://forums.phpfreaks.com/topic/212159-php-email-help/#findComment-1106689
Share on other sites

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.