PHP Scripts
Use your server's PHP engine to mass mailout.
Need to send a newsletter to your clients?
No, you don't need to buy a mass mailer. Let your server do it .
Upload all your contacts (in this example a simple MySQL table, named mail with one column named address)
If you want a personalised letter, add more columns in your database, eg, name, company and so on
<?php //this is a bulk emailer // take weight off the server CPU by waiting 10 seconds between each mailout. if (!mail($row["address"], ","From: joe.bloggs@blogcity.com\n")) echo "<FONT FACE=VERDANA, ARIAL SIZE=2 Color=Blue>E R R O R <FONT Color=Blue> : Mail has not been sent to " . $row["address"] . "</FONT><BR>\n"; } ?>
|