Jump to content

Send mass e-mails on certain date


biggieuk

Recommended Posts

Hi all,

 

I have a mysql database with a list of users including their e-mail address.

 

I need to be able to automatically send a mass php generated e-mail upon a pre-determined date. Is this possible?

 

Or would it be easier for the admin to login to the admin area and click send on the actual date that the emails are to be sent?

 

thanks.

 

 

Link to comment
https://forums.phpfreaks.com/topic/105579-send-mass-e-mails-on-certain-date/
Share on other sites

thanks for your reply.

 

I have another related question.

 

There are a number of email addresses stored in a database. I need to be able to click a button on my website and an e-mail is sent to each person.

 

Is this possible and what would be the best method?

 

Thanks again.

You can do something like this to send an e-mail to everyone:

<?php

// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
mysql_select_db("$db_name")or die("cannot select DB");


$content=$_POST['content']
$subject=$_POST['subject']
//content and subject of e-mail posted from form
$sql = "SELECT * FROM Members";
$result=mysql_query($sql);
while($row = mysql_fetch_array($result))
{
$address = $row[email];
$name=$row[firstName] ." ". $row[lastName];

  //send email
$emess= "<html>
$content
</html>";

$headers= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From:[email protected]';


$mailsnd=mail("$address","$subject","$emess","$headers");

echo "Email send to $name at $address.<br />";
}

 

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.