Advertisement
MAINCYBER_NET

Priv8 Mailer Inbox All 2017

Oct 30th, 2016
4,795
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.39 KB | None | 0 0
  1. <html><head>
  2. <title>MAILER PRO INBOX 2017</title>
  3. <style type="text/css">
  4. font{font-family: Tahoma, Arial, sans-serif ;}
  5. div#container{width: 800px;position: relative;margin-left: auto; margin-right: auto;}
  6.  #result{text-align: left ;  border-radius: 10px; border:1px solid #4C83AF; padding:4px 8px; line-height:16px; background:#131313; color:#aaa; margin:0 0 8px 0; }
  7.  .style2{text-align: center ;font-weight: bold;font-family: Tahoma, Arial, sans-serif  ;color: #4C83AF;text-shadow: 0px 0px 60px #4C83AF ;font-size: 50px;}
  8.  .evalcode{border:1px solid #0CF;background:#090909; color:#4C83AF; padding:2px;border:1px solid #202020; font-size:11px; width:100%;}
  9.  .evalcode:hover{border:1px solid #4C83AF;}
  10.  .inputzbut{ font-size:11px; background:#191919; color:#4C83AF; margin:0 4px; border:1px solid #222222; }
  11.  .inputzbut:hover{border:1px solid #4C83AF;} .coode{color:#4C83AF;background:#090909;border:1px solid #202020;} .coode:hover{border:1px solid #4C83AF;} </style></head>
  12. <bgsound src="../../Music/ERA%20-%20The%20Mass.wav" loop="-1">
  13. <div id="container"><div id="bv_Html1" style="position:absolute;center:23px;width:780px;height:169px;z-index:0;" align="center">
  14. <?php
  15. error_reporting(0);
  16. $action=$_POST['action'];
  17. $from=$_POST['from'];
  18. $realname=$_POST['realname'];
  19. $subject=$_POST['subject'];
  20. $message=$_POST['message'];
  21. $emaillist=$_POST['emaillist'];
  22. $addr = getenv("REMOTE_ADDR");
  23. if ($action=="send"){ $message = urlencode($message);
  24.     $message = ereg_replace("%5C%22", "%22", $message);
  25.     $message = urldecode($message);
  26.     $message = stripslashes($message);
  27.     $subject = stripslashes($subject);
  28. }
  29. ?>
  30.  
  31. <body text="#4C83AF" bgcolor="#000000" font="Verdana, Arial, Helvetica, sans-serif" background="http://im34.gulfup.com/kHKEV.jpg"><div id="result">
  32. <br /><br />
  33. <div align="center" class="style2">MAILER PRO INBOX 2017</div>
  34. <br /><br />
  35. </div><div id="result"><form name="form1" method="post" action="" enctype="multipart/form-data"><table width="142" border="0"><tr><td width="81"><div align="right"><font color="#4C83AF" size="-3">Your Email :</font></div></td><td width="219"><font size="-3"><input class="evalcode" name="from" value="<?php print $from; ?>" size="30" /></font></td><td width="212"><div align="right"><font color="#4C83AF" size="-3">Your Name :</font></div></td><td width="278"><font size="-3"><input class="evalcode" name="realname" value="<?php print $realname; ?>" size="30" /></font></td></tr><tr><td width="81"><div align="right"><font color="#4C83AF" size="-3">Subject :</font></div></td><td colspan="3" width="703"><font size="-3"><input class="evalcode" name="subject" value="<?php print $subject; ?>" size="91" /></font></td></tr><tr valign="top"><td colspan="3" width="520"><font color="#4C83AF" size="-3">Message Box :</font></td><td width="278"><font color="#4C83AF" size="-3">eMail Send To :</font></td></tr><tr valign="top"><td colspan="3" width="520" ><font size="-3"><textarea class="coode" name="message" cols="56" rows="10"><?php print $message; ?></textarea><br /><input type="hidden" name="action" value="send" /></font><p><font size="-3">
  36.     <input type="submit" name="evalcodesubmit" class="inputzbut" value="Send eMails" style="width:186;height:60;" /></font></td><td width="278"><font size="-3"><textarea class="coode" name="emaillist" cols="32" rows="10"><?php print $emaillist; ?></textarea></font></td></tr></table></form></div>
  37.  
  38. <?php
  39. if ($action=="send"){
  40.     if (!$from && !$subject && !$message && !$emaillist){
  41.         print "Please complete all fields before sending your message.";
  42.         exit;
  43.     }
  44. $allemails=split("
  45. ",$emaillist);
  46. $numemails=count($allemails);
  47. for($xx=0;$xx<1;$xx++){
  48.     for($x=0;$x<$numemails;$x++){
  49.         $to=$allemails[$x];
  50.         if ($to){
  51.             $to=ereg_replace(" ","",$to);
  52.             $target =explode("@",$to);
  53.             $message=ereg_replace("&email&",$to,$message);
  54.             $subject=ereg_replace("&email&",$to,$subject);
  55.             $message=ereg_replace("&user&",$target[0],$message);
  56.             $subject=ereg_replace("&user&",$target[0],$subject);
  57.             print "Sending Mail To $to.......";
  58.             @flush();
  59.             $header="From: $realname <$from>
  60. Reply-To: $from
  61. ";
  62.             $header.="MIME-Version: 1.0
  63. ";
  64.             $header.="Content-Type: text/html
  65. ";
  66.             $header.="Content-Transfer-Encoding: 8bit
  67.  
  68. ";
  69.             $header.="$message
  70. ";
  71.             @mail($to,$subject,"",$header);
  72.             print "OK<br>";
  73.             @flush();
  74.             }
  75.         }
  76.     }
  77. }
  78. ?>
  79. </body>
  80.  
  81.   <bgsound src="http://im41.gulfup.com/NP1nR.swf" loop="1"></bgsound>
  82.  
  83.  
  84.  
  85. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement