Send an email from your friends account!
- Filed under: Computer Pranks
- Date: Oct 11,2007
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.
College scholarships

13 Responses for "Send an email from your friends account!"
I get an error line 1 character 35
Same error lol
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.
what does the corrected code look like?
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?
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.
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.
Can I know what to give in place of the field……….
“mail.YOURSERVER.comâ€
I just have a PC with Net connection
How to configure to send test mail with any name.
Example : From Prasannarani@hcl.in
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.
Quality!
what are you doing
Nice guide. Just wanted to let your readers know that this can also be done via websites like http://fakesend.com (for those less tech-savvy, like me
Leave a comment