Hi friends! Few weeks back I have got few mails asking me to write on tracing anonymous mails. So I thought today to get started with the topic of anonymous mailing. Before you learn to trace an email you must know to create an anonymous mail. Using this technique you can email any user from any email service you wish. You don’t even need the access to the email id from which you want the email to be sent. Today I am gonna introduced to a website service and will give you a basic idea on how it works and in the end we will make one like that by our self.
After reading this article you will be able to send an email from any given email address. This is also known as Email Spoofing. This can be done in many methods, in this post I will describe to do it with a fake mailer php script.
Note: If you send an email from an id of a particular server to the id that corresponds to the same server then your email may alert the user! That is, if you mail from a Gmail id to another Gmail id using fake mailer script then there would be a warning message that would be displayed in the footer of the email.
Just follow the steps below and you will be able to understand the procedure to use this fake mailer script and send a fake mail.
- Go to http://www.emkei.cz

- Fill the From Name, From Email and To and the Text fields. Enter the CAPTCHA and click Send!
- You are done! Your mail is sent and the sent notification will be shown on the next page. If a message pops up asking you to accept the terms and conditions then agree the T&C and your mail is sent!
So what is happening here?
This webpage contains a PHP code similar to the one which is given below. This script generates an email that is to be sent with the provided from email address and then it confirms whether the mail is successfully sent or not.
This webpage contains a PHP code similar to the one which is given below. This script generates an email that is to be sent with the provided from email address and then it confirms whether the mail is successfully sent or not.
echo” Enter the ‘To’ email address:”;$to = $_GET[email];
echo”Enter the ‘Subject’ of email”;
$subject = $_GET[header];
echo”Enter the ‘From’ email address:”;$fake = $_GET[from];
echo”Enter the ‘Message’”;
$message = $_GET[message];
}
$headers = “MIME-Version: 1.0″ . “\r\n”;
$headers .= “Content-type:text/html;charset=iso-8859-1″ . “\r\n”;
$headers .= “From: ” . $fake . ” <” . $fake . “>” . “\r\n”;
if (mail($to, $subject, $message, $headers))
{
echo”The e-mail was successfully sent to ” . $to . “
\n”;
echo”From: ” . $fake . “
\n”;
echo”Subject: ” . $subject . “
\n”;
echo”Message:
\n”;
echo”” . $message . “
“;
}
else
{
echo”Opps there was a problem sending the email\n”;
}
?>
To get this script into action you will have to host this PHP
script at a web hosting server. Then you have to make a webpage using
HTML and in the form of action=fakemailer.php has to be written. The fakemailer.php is the name of the hosted PHP file with the above code.
Remember, the email which is sent will be associated with an IP
address of the web server where you hosted your PHP script. Therefore
this makes the fake mail traceable!
If you want a video tutorial to build a fake mail by yourself then kindly watch the video embedded below.
Thanks for sharing !!
ReplyDeleteplz check : Msgclub Bulk sms software
How can we send PDF file plss helppp...
ReplyDelete