biggieuk Posted May 14, 2008 Share Posted May 14, 2008 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. Quote Link to comment https://forums.phpfreaks.com/topic/105579-send-mass-e-mails-on-certain-date/ Share on other sites More sharing options...
vbnullchar Posted May 14, 2008 Share Posted May 14, 2008 you can do it also by creating a cron timer or a tash schedule to execute your script on a certain date Quote Link to comment https://forums.phpfreaks.com/topic/105579-send-mass-e-mails-on-certain-date/#findComment-540845 Share on other sites More sharing options...
biggieuk Posted May 17, 2008 Author Share Posted May 17, 2008 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. Quote Link to comment https://forums.phpfreaks.com/topic/105579-send-mass-e-mails-on-certain-date/#findComment-543810 Share on other sites More sharing options...
ifis Posted May 18, 2008 Share Posted May 18, 2008 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 />"; } Quote Link to comment https://forums.phpfreaks.com/topic/105579-send-mass-e-mails-on-certain-date/#findComment-543854 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.