Top 10 List

Send an email from your friends account!

  • Author: Iambetterthanu.com
  • 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”) = 25

objMessage.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!"

  1. Paul October 11th, 2007 at 2:47 pm

    I get an error line 1 character 35

  2. Sean October 11th, 2007 at 7:41 pm

    Same error lol

  3. Paul Sutton 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.

  4. SQLPoet October 12th, 2007 at 8:43 am

    what does the corrected code look like?

  5. Jay 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?

  6. Sean 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.

  7. Savage 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.

  8. prasanna October 16th, 2007 at 7:45 am

    Can I know what to give in place of the field……….
    “mail.YOURSERVER.com”

  9. prasanna 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

  10. Jeff Dempsey 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.

  11. Harry Roberts November 10th, 2007 at 9:33 am

    Quality!

  12. lashika November 16th, 2007 at 5:51 pm

    what are you doing

  13. Andrew Rouhafzai September 4th, 2008 at 7:41 am

    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


Recent comments