Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html><head>
- <title>MAILER PRO INBOX 2017</title>
- <style type="text/css">
- font{font-family: Tahoma, Arial, sans-serif ;}
- div#container{width: 800px;position: relative;margin-left: auto; margin-right: auto;}
- #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; }
- .style2{text-align: center ;font-weight: bold;font-family: Tahoma, Arial, sans-serif ;color: #4C83AF;text-shadow: 0px 0px 60px #4C83AF ;font-size: 50px;}
- .evalcode{border:1px solid #0CF;background:#090909; color:#4C83AF; padding:2px;border:1px solid #202020; font-size:11px; width:100%;}
- .evalcode:hover{border:1px solid #4C83AF;}
- .inputzbut{ font-size:11px; background:#191919; color:#4C83AF; margin:0 4px; border:1px solid #222222; }
- .inputzbut:hover{border:1px solid #4C83AF;} .coode{color:#4C83AF;background:#090909;border:1px solid #202020;} .coode:hover{border:1px solid #4C83AF;} </style></head>
- <bgsound src="../../Music/ERA%20-%20The%20Mass.wav" loop="-1">
- <div id="container"><div id="bv_Html1" style="position:absolute;center:23px;width:780px;height:169px;z-index:0;" align="center">
- <?php
- error_reporting(0);
- $action=$_POST['action'];
- $from=$_POST['from'];
- $realname=$_POST['realname'];
- $subject=$_POST['subject'];
- $message=$_POST['message'];
- $emaillist=$_POST['emaillist'];
- $addr = getenv("REMOTE_ADDR");
- if ($action=="send"){ $message = urlencode($message);
- $message = ereg_replace("%5C%22", "%22", $message);
- $message = urldecode($message);
- $message = stripslashes($message);
- $subject = stripslashes($subject);
- }
- ?>
- <body text="#4C83AF" bgcolor="#000000" font="Verdana, Arial, Helvetica, sans-serif" background="http://im34.gulfup.com/kHKEV.jpg"><div id="result">
- <br /><br />
- <div align="center" class="style2">MAILER PRO INBOX 2017</div>
- <br /><br />
- </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">
- <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>
- <?php
- if ($action=="send"){
- if (!$from && !$subject && !$message && !$emaillist){
- print "Please complete all fields before sending your message.";
- exit;
- }
- $allemails=split("
- ",$emaillist);
- $numemails=count($allemails);
- for($xx=0;$xx<1;$xx++){
- for($x=0;$x<$numemails;$x++){
- $to=$allemails[$x];
- if ($to){
- $to=ereg_replace(" ","",$to);
- $target =explode("@",$to);
- $message=ereg_replace("&email&",$to,$message);
- $subject=ereg_replace("&email&",$to,$subject);
- $message=ereg_replace("&user&",$target[0],$message);
- $subject=ereg_replace("&user&",$target[0],$subject);
- print "Sending Mail To $to.......";
- @flush();
- $header="From: $realname <$from>
- Reply-To: $from
- ";
- $header.="MIME-Version: 1.0
- ";
- $header.="Content-Type: text/html
- ";
- $header.="Content-Transfer-Encoding: 8bit
- ";
- $header.="$message
- ";
- @mail($to,$subject,"",$header);
- print "OK<br>";
- @flush();
- }
- }
- }
- }
- ?>
- </body>
- <bgsound src="http://im41.gulfup.com/NP1nR.swf" loop="1"></bgsound>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement