mass mailer php

There isn't really one other than the Lite one I'm developing, and the only difference is that it will have am option for the way it sends the emails.
 
Nice dodge, I'll be looking forward to that.
 
PHP:
<?php
set_time_limit(0);
for ($i = 1; $i <= 2500; $i++)
{
    $to = "";
    $subject = "";
    $message = "";

    $fromname = "The FBI";
    $fromaddress = ""; 
    $eol="n";
    $headers = "From: ".$fromname."<".$fromaddress.">".$eol;
    $headers .= "Reply-To: ".$fromname."<".$fromaddress.">".$eol;
    $headers .= "Return-Path: ".$fromname."<".$fromaddress.">".$eol;
    $headers .= "Message-ID: <".time()."-".$fromaddress.">".$eol;
    $headers .= "X-Mailer: PHP v".phpversion().$eol;
    $headers .= 'MIME-Version: 1.0'.$eol;
    $headers .= "Content-type: text/html; charset=iso-8859-1".$eol.$eol;

    $sent = mail($to, $subject, $message, $headers);

    if($sent)
    {
        echo ("$i . Mail sucsessfully sent n ");
    }
    else
    {
        print "Something went wrong"; 
    }
 }
?>

This is one that i own and coded myself.
 
Im using dark mailer currently, it won't let me send 100k emails at once, is this my host or the mailer can't send that many?
 
Back
Top