Hello Bros,
This Mass-Email sender have following Options :
priority Low / High
you can send more Emails
and a lot more
check it out :
PHP Code:
<?php
if(empty($_POST)==false){
$emails = preg_split("/\r\n|\n|\r/",$_POST["victimn"]);
foreach($emails as $email){
$headers = array();
$headers[] = "MIME-Version: 1.0";
$headers[] = "Content-type: text/plain; charset=iso-8859-1";
$headers[] = "From: " . $_POST["sendername"] . " <" . $_POST["senderemail"] . ">";
$headers[] = "Bcc: " . $_POST["Targetname"] . " <" . $_POST["Targetemail"] . ">";
$headers[] = "Reply-To: <" . $_POST["repto"] . ">";
$headers[] = "Subject: " . $_POST["title"];
if($_POST["epriority"]==1){
$headers[] = "X-Priority: 1 (Highest)";
$headers[] = "X-MSMail-Priority: High";
$headers[] = "Importance: High";
}elseif($_POST["epriority"]==3){
$headers[] = "X-Priority: 5 (Lowest)";
$headers[] = "X-MSMail-Priority: Low";
$headers[] = "Importance: Low";
}
$headers[] = "X-Mailer: PHP/".phpversion();
mail($email, $_POST["title"], $_POST["Texta"], implode("\r\n", $headers));
}
}else{
?>
<form method="POST">
<table>
<tr>
<td>
Emails :</br><textarea name="victimn" cols="50" rows="15" maxlength="10000" wrap="soft"></textarea></td><td>
<table><tr><td>
Your Email : </br><input type="text" name="senderemail" size="40"></td></tr><tr><td>
Your Name : </br><input type="text" name="sendername" size="40"></td></tr><tr><td>
Reply-To : </br><input type="text" name="repto" size="40"></td></tr><tr><td>
Subject : </br><input type="text" name="title" size="40"></td></tr><tr><td>
Email Priority : </br><select name="epriority">
<option selected="" value="">- Please Choose -</option>
<option value="1">High</option>
<option value="2">Normal</option>
<option value="3">Low</option>
</select>
</td></tr></table></td></tr></table></td></tr><tr><td>
Your Text : </br><textarea name="Texta" cols="86" rows="15" maxlength="10000" wrap="soft"></textarea></td>
</td></tr></table></br>
<input type="Submit" value="Send Emails">
</form>
<?php
}
?>