12.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

10-23-2011, 07:45 AM
Post: #1
Request: Simple PHP mailer script
I need php mail script i can just upload to my server and on same folder i would upload emails.txt where there is one email per line, and once i run the script it will start sending my message out to all those. So anyone have this kind of emailer script?

i would send maybe 10k emails per day with it.
11-03-2011, 06:15 AM
Post: #2
RE: Request: Simple PHP mailer script
Code:
<html>
<head>
<!--Style of Text-->
<style>
<!--
A.type3:link    {color:#00CCFF; text-decoration:none;}
A.type3:visited {color:#00CCFF; text-decoration:none;}
A.type3:active  {color:#00CCFF; text-decoration:none;}
A.type3:hover   {color:#FF8000; text-decoration:overline underline;}
//-->
</style>
</head>

<body bgcolor = black>
<!--Star Effect-->
<script language="JavaScript1.2">

var ns=document.layers?1:0
var ie4=document.all?1:0
var ns6=document.getElementById&and!document.all?1:0

amount=20;
if (ns){
for (i=0; i < amount; i++)
document.write("<LAYER NAME='nsstars"+i+"' LEFT=0 TOP=0 BGCOLOR='#FFFFF0' CLIP='0,0,1,1'></LAYER>");
}
else if (ie4||ns6){
document.write("<div id='ieCov' style='position:absolute;top:0px;left:0px'>");
document.write("<div style='position:relative'>");
for (i=0; i < amount; i++)
document.write("<div id='iestars"+i+"' style='position:absolute;top:0px;left:0px;width:1;height:1;background:#ffffff;fo​nt-size:1;z-index:10'></div>");
document.write("</div></div>");
}
Clrs=new Array('ff0000','00ff00','ffffff','ff00ff','ffa500','ffff00','00ff00','ffffff','f​f00ff')
sClrs=new Array('ffa500','00ff00','FFAAFF','fff000','fffffF')
Xpos=300;
Ypos=150;
initialStarColor='00ff00';
step=5;
currStep=0;
explosionSize=120;
function Fireworks(){
var WinHeight=(ns||ns6)?window.innerHeight-100:window.document.body.clientHeight-100;
var WinWidth=(ns||ns6)?window.innerWidth-100:window.document.body.clientWidth-100;
var Yscroll=(ns||ns6)?window.pageYOffset:document.body.scrollTop;
for (i=0; i < amount; i++){
if (ie4||ns6)
var layer=ns6?document.getElementById("iestars"+i).style : eval("iestars"+i).style;
else if (ns)
var layer=document.layers["nsstars"+i]
var randCol=Math.round(Math.random()*8);
var randSz=Math.round(Math.random()*2);
layer.top = Ypos + explosionSize*Math.sin((currStep+i*5)/3)*Math.sin(currStep/100)
layer.left= Xpos + explosionSize*Math.cos((currStep+i*5)/3)*Math.sin(currStep/100)
if (currStep < 110){
if (ns){layer.bgColor=initialStarColor;layer.clip.width=1;layer.clip.height=1}
else{layer.background=initialStarColor;layer.width=1;layer.height=1;layer.fontSi​ze=1}
}
else{
if (ns){layer.bgColor=Clrs[randCol];layer.clip.width=randSz;layer.clip.height=randSz}
else{layer.background=Clrs[randCol];layer.width=randSz;layer.height=randSz;layer.fontSize=randSz}
}
}
if (currStep > 220)
{
currStep=0;
Ypos = 50+Math.round(Math.random()*WinHeight)+Yscroll;
Xpos = 50+Math.round(Math.random()*WinWidth);
for (i=0; i < sClrs.length; i++)
  {
  var newIcol=Math.round(Math.random()*i);
  }
initialStarColor=sClrs[newIcol];
explosionSize=Math.round(80*Math.random()+100);
}
currStep+=step;
setTimeout("Fireworks()",20);
}
Fireworks();
// -->
</script>


<?
/*
© Chetan (Just Do Hackers)
*/
?>
<title>Anonymizer | Spammer | Flodder --< Just Do Hackers</title>
<?
//
error_reporting (0);
if(!set_time_limit(0)) {
$limit = false;
} else {
set_time_limit(0);
ignore_user_abort(1);
$limit = true;
}

$log = 'anonymous.txt'; // Log file

ini_set('max_execution_time', '0');

?>

set_time_limit(0) = <?if($limit)echo('<font color=black>On</font>');else
echo('<font color=Red>Off</font> (Working time is limited with the current settings of the server)');?><br><br>

<center>
<b><font color=yellow><font face=Papyrus>

<?

$ip = getenv('REMOTE_ADDR');
if($_GET['mail'] == '1' || $_GET['mail'] == '2' || $_GET['mail'] == '3')
{

$_POST['to'] = stripslashes($_POST['to']);
$_POST['msg'] = stripslashes($_POST['msg']);
$_POST['from'] = stripslashes($_POST['from']);
$_POST['subject'] = stripslashes($_POST['subject']);

if($_POST['to'] and& $_POST['msg'] and& $_POST['from'] and& $_POST['tipe'])
{
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/".$_POST['tipe']."; charset=windows-1251\r\n";
$headers .= "From: ".$_POST['from']."\n";
if($_GET['mail'] == '1')
{
mail($_POST['to'], $_POST['subject'], $_POST['msg'], $headers) or die('Cannot send the message');
}
elseif($_GET['mail'] == '2')
{
$_POST['to'] = explode("\n",$_POST['to']);
foreach($_POST['to'] as $poluchatels)
{
mail($poluchatels, $_POST['subject'], $_POST['msg'], $headers) or die('Cannot send the message');
}
}
elseif($_GET['mail'] == '3')
{
if(preg_match('/[0-9]+/',$_POST['kol']))
{
for($i=0;$i<$_POST['kol'];$i++)
{
mail($_POST['to'], $_POST['subject'], $_POST['msg'], $headers) or die('Cannot send the message');
sleep(1);
}
}
else
{
echo('Incorrect (or not entered) number of messages');
}
}
$f = fopen($log,'a');
fwrite($f,'Message sent and'.$_POST['msg'].'and with subject "'.$_POST['subject'].'" for "'.$_POST['to'].'" from IP - "'.$ip."\"\r\n");
fclose($f);
echo('<center><b><font color="green">Message succesfully sent</font></b></center>');
}
else
{
?>
<form style="width:350px" method='post'>
<?
if($_GET['mail'] == '1' || $_GET['mail'] == '3')
{
echo("Receiver<br><input type='text'name='to'><br>");
}
?>
Sender<br>  <input type='text' name='from'> <br>
Subject<br> <input type='text' name='subject'> <br>
<?
if($_GET['mail'] == '3')
{
echo("Amount of messages<br> <input type='text' name='kol'><br>");
}
?>
<br>

Html   <input type='radio' checked='checked' tabindex='1' name='tipe' value='html'>
<input type='radio' name='tipe' value='plain'>Text
<br>

<?
if($_GET['mail'] == '2')
{
echo("<br>Receivers<br><textarea name='to' rows='5' cols='30'>kevin@yahoo.com
osama@gmail.com
hackers@hotmail.com</textarea>");
}
?>
<br>Message<br>
<textarea name='msg' rows='7' cols='30'></textarea><br><br><input type='submit' value='Send'>
</form>
<?
}
} else {
?>

<center>
<hr><font face =Copperplate Gothic Bold> <b> <h2>

<a class="type3" href='<?=$_SERVER['PHP_SELF']?>?mail=1'><u>Anonymizer</u></a>
<br><br>
<a class="type3" href='<?=$_SERVER['PHP_SELF']?>?mail=2'><u>Spammer</u></a>
<br><br>
<a class="type3" href='<?=$_SERVER['PHP_SELF']?>?mail=3'><u>Flooder</u></a>
<br><br>

</b></h2></font>

<b><font face=Papyrus><h1>Only For Education Purposes </font></h1></b>
<hr>

<?
}
04-05-2012, 09:58 PM
Post: #3
RE: Request: Simple PHP mailer script
Code:
Mass Email Script

Code:
http://mir.cr/T1AQ3OQO
Permanently Banned by Direct Download for posting
INFECTED FILESnot once but many times.
Without even posting Virus Total.
Please do NOT download any files provided by this guy.




74.gif
Free counters!