Advertisement
jefrialdi33

emails.php

Mar 6th, 2020
3,576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.65 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>PHP Mailler By 4LF45T</title>
  4. <link href="https://fonts.googleapis.com/css?family=Abel|Acme|Overpass" rel="stylesheet">
  5. <style>
  6. body{
  7. font-family: "Acme", sans-serif;
  8. background:#000;
  9. color:#00D06A;
  10. }
  11. textarea{
  12. background:#000;
  13. color:#00D06A;
  14. border:1px solid lime;
  15. }
  16. a{
  17. font-family: "Acme", sans-serif;
  18. }
  19. input{
  20. color:red;
  21. background:#282828;
  22. border:1px solid lime;
  23. }
  24. input:hover{
  25. background:#1a1a1a;
  26. color:#00D06A;
  27. }
  28. .jefri{
  29. background:#282828;
  30. border:1px solid #c9c7c7;
  31. }
  32. hr{
  33. border:1px solid #c9c7c7;
  34. }
  35. pre{
  36.         width: 100%;
  37.        color:#00D60A;
  38.     margin: 0;
  39.     overflow: auto;
  40.     overflow-y: hidden;
  41.        margin-top:20%;
  42.     font-size: 12px;
  43.     background: none;
  44.     background: url(lines.png) repeat 0 0;
  45.        text-align:center;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <pre>
  51.  _______           _______    _______  _______ _________ _        _        _______  _______
  52. (  ____ )|\     /|(  ____ )  (       )(  ___  )\__   __/( \      ( \      (  ____ \(  ____ )
  53. | (    )|| )   ( || (    )|  | () () || (   ) |   ) (   | (      | (      | (    \/| (    )|
  54. | (____)|| (___) || (____)|  | || || || (___) |   | |   | |      | |      | (__    | (____)|
  55. |  _____)|  ___  ||  _____)  | |(_)| ||  ___  |   | |   | |      | |      |  __)   |     __)
  56. | (      | (   ) || (        | |   | || (   ) |   | |   | |      | |      | (      | (\ (  
  57. | )      | )   ( || )        | )   ( || )   ( |___) (___| (____/\| (____/\| (____/\| ) \ \__
  58. |/       |/     \||/         |/     \||/     \|\_______/(_______/(_______/(_______/|/   \__/
  59.                                                                                            
  60.                                                                                            
  61. <table width='50%' class='jefri' align='center'>
  62. <tr><td>
  63. <center><font size="5">PHP Mailler Coded By 4LF45T</font></center>
  64. <hr width="100%" align="center" />
  65. </td>
  66. </tr>
  67. <tr><td>
  68. <form method="POST">
  69. <span>Subjek Mail :
  70.       </span>
  71.       <input type="text" size="16" height="10" style="margin: 5px auto; color:red; background:#000;border:1px solid lime;" placeholder="Hai Salam Kenal" name="subjek" autofocus="" required="">
  72.    <br>
  73.       <span>Your Email :
  74.       </span>
  75.       <input type="text" size="40" height="10" style="margin: 5px auto; color:red; background:#000;border:1px solid lime;" placeholder="[email protected]" name="punyakau" autofocus="" required="">
  76.     <br>
  77.       <span>Email Target :
  78.       </span>
  79.       <input type="text" size="38" height="10" style="margin: 5px auto; color:red; background:#000;border:1px solid lime;" placeholder="target [email protected]" name="email" autofocus="" required="">
  80.     <br>
  81.       <span>Jumlah :
  82.       </span>
  83.       <input type="number" size="40" height="10" style="margin: 5px auto; color:red; background:#000;border:1px solid lime;" placeholder="999999" name="kali" required="">
  84.     <br>
  85. <span>Isi Pesan:
  86.       </span><br>
  87.     <center><textarea rows="8" cols="55" name="isipesan" placeholder="isi pesan Disini Gan"></textarea>
  88.     </center><br>
  89.     <hr align="center" />
  90.   <center><input type="submit" style="width:290px" name="ok" value="Send">
  91.   </center>
  92. </form>
  93. </td></tr>
  94. </table>
  95. <?php
  96. if(isset($_POST["ok"])){
  97. $subjek = $_POST['subjek'];
  98. $from = $_POST['punyakau'];
  99. $mailto = $_POST['email'];
  100. $imel = $_POST['isipesan'];
  101. $headers = "From:" . $from;
  102. for ($a= 1; $a <= $_POST['kali']; $a++)
  103. {
  104. mail($mailto, $subjek, $imel, $headers);
  105. echo '<center><font color=#00D60A>'. $a . ' TERKIRIM</font></center>';
  106. echo "<br />";
  107. }
  108. }
  109. ?>
  110. <center><font size="4">Copyright &copy;  2020<font color="white"> EAGLEcodes</font></center>
  111. </body>
  112. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement