How do I work this out so I can mail to all the matches I get from my database?
PHP Code:$email_list = mysql_query("SELECT mail FROM Users WHERE updateme='Yes'");
$mail_body = "New Mail";
$subject = "Hello";
mail($email_list, $subject, $mail_body);
| SitePoint Sponsor |
How do I work this out so I can mail to all the matches I get from my database?
PHP Code:$email_list = mysql_query("SELECT mail FROM Users WHERE updateme='Yes'");
$mail_body = "New Mail";
$subject = "Hello";
mail($email_list, $subject, $mail_body);
Bookmarks