automatic interneting

  • Thread starter Thread starter billb
  • Start date Start date
B

billb

how can I get a browser to open ALL my new incoming mail from
hotmail.com

I want to click an icon and have the browser open a window with each
of my new emails.

Is this possible?
 
You could write a script, depending on what language, I would say
Flash/actionscript would be best. In the script you will need to do something
like

on(press){

getURL("http://by12fd.bay12.hotmail.msn.com...&imgsafe=n&curmbox=F000000001&a=*hexUsername*",_blank);
}

If you make a loop for this then you might have something that works. The
only issue is that you would have to figure out what headers your computer is
sending as login information (port sniffer might do), then recreating the
msg= number is going to be really tough, since these are dynamic and always
changing.
 
Back
Top