Jump to content

best way to mass email?


daydreamer

Recommended Posts

IDK but i'd write a script..

although the server may be limited to # of emails it's aloud to send /unit of time

 

make a simple mail(); script and just smack in some sql to get the email from the database

 

<?php
include('connect.php');
$query = "SELECT * FROM emails";
$from = "[email protected]";
$subject = "YOU SMELL";
$message = "REALLY NICELY";
$headers = "From: $from";
while ($row = mysql_fetch_assoc($query)) {
//send email script using $row['email'] as the email
$to = $row['email'];
mail ($to, $subject, $message, $headers);
}

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.