Jump to content

[SOLVED] Email Help


CoreyR

Recommended Posts

I've been at this for a few hours and can't get it to work right.

I'm trying to email everyone in my database.

 

<?

mysql_connect("mysql", "xxxx", "xxxx") or die(mysql_error());

mysql_select_db("data") or die(mysql_error());

 

include 'admin_header.php';

 

$data = mysql_query("SELECT * FROM clients")

or die(mysql_error());

while($info = mysql_fetch_array( $data ))

{

$to = $info['email'];

$subject = $_POST['subject'];

$body = $_POST['content'];

mail($to, $subject, $body)

}

 

Print "Done<br>";

include 'admin_footer.php';

 

?>

 

Thanks for the help!

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.