Thursday, October 11th, 2007...1:50 pm
Send an email from your friends account!
If you are new to the site, sign up for the RSS Feed. All new sign ups get punch and pieRSS feed. Thanks for visiting!
I don’t know about you but I love pranking my friends. One of my favorite pranks is sending emails from their account to friends, girlfriends or family. But how do you do that? You might be thinking you need to hack into an account or install some spy ware but you don’t.
You can download my copy here (it’s a vbs file, anti virus might call it a virus)
Supplies:
- Note Pad
- That is it
Step1: Open note pad
Step2: Copy this code into note pad
Set objMessage = CreateObject(”CDO.Message”)
objMessage.Subject = “EMAIL ANY ONE”
objMessage.From = “YourFriends@Email.com”
objMessage.To = “HisMothers@Email.com”
objMessage.TextBody = “Funny TEXT”objMessage.Configuration.Fields.Item _
(”http://schemas.microsoft.com/cdo/configuration/sendusing”) = 2‘Name or IP of Remote SMTP Server
objMessage.Configuration.Fields.Item _
(”http://schemas.microsoft.com/cdo/configuration/smtpserver”) = “mail.YOURSERVER.com”‘Server port (typically 25)
objMessage.Configuration.Fields.Item _
(”http://schemas.microsoft.com/cdo/configuration/smtpserverport”) = 25objMessage.Configuration.Fields.Update
objMessage.Send
Step3: Update the key fields with the appropriate information
- The server field is the first one you should edit, without it this wont work. Change the mail.youserver.com to be your company websites or your local smtpserver. It might take some looking around to figure this out. Call your ISP for information, or if you have a website you can use yours.
- (”http://schemas.microsoft.com/cdo/configuration/smtpserver”) = “mail.YOURSERVER.com”
- This field is the title of the email. So if you are sending an email to his mother, it could be “It’s a boy”
- objMessage.Subject = “EMAIL ANY ONE”
- The next field is the email you want it to appear from
- objMessage.From = “YourFriends@Email.com”
- The next field is the email you want it to go to
- objMessage.To = “HisMothers@Email.com”
- Last field is what you want the email to say
- objMessage.TextBody = “Hey Mom, Guess who is going to be a daddy!”
Step4: Save the file as a VBS file. So the name should look something like this, Emailfile.vbs
Step5: When you want to send the email just double click on the file and the email will be off.
If you want to edit the email in the future just right click on the file and click edit.
That is it, your email will be sent and your friend will have no clue.
Email, Email Prank, Prank your friends, Trick your friends
12 Comments
October 11th, 2007 at 2:47 pm
I get an error line 1 character 35
October 11th, 2007 at 7:41 pm
Same error lol
October 11th, 2007 at 8:56 pm
change the character with double quote, and same for single quote.
my smtpserver needs authentication so I can’t try it out, check at home.
October 12th, 2007 at 8:43 am
what does the corrected code look like?
October 12th, 2007 at 10:50 am
Code is correct. Just replace the quotes with quotes you type instead of pasted. However, this needs an open SMTP relay. … or a way to authenticate?
October 12th, 2007 at 12:50 pm
Ok, I corrected all the quotes, but now i get an error on line 20 char 5. While I’m not gonna claim to know my script, I can’t even think of what the error could be.
October 12th, 2007 at 1:11 pm
The same results can be achieved by a telnet session to an open smtp server. Just use the correct smtp commands and you can make an e-mail with any sender information. If you google on smtp commands you will find what you need to know.
October 16th, 2007 at 7:45 am
Can I know what to give in place of the field……….
“mail.YOURSERVER.com”
October 16th, 2007 at 7:48 am
I just have a PC with Net connection
How to configure to send test mail with any name.
Example : From Prasannarani@hcl.in
October 16th, 2007 at 8:54 am
If you dont know your SMTP server, you can contact your ISP. If you have a website of your own you might be able to use that. This works best at your company office.
November 10th, 2007 at 9:33 am
Quality!
November 16th, 2007 at 5:51 pm
what are you doing
Leave a Reply