Yes, you can use a mortscript to download your email. There may be a way of connecting directly, but I don't remember it and don't feel like looking it up. Here is my email script, where 'Hotmail' is the name of the email account. Copy it to a new file, rename it to format *.mscr, and drop it in your startup folder. If you don't have mortscript installed, you can down load it
here.
Quote:
current = ActiveProcess()
If ( current eq "tmail.exe" )
Close( "Messaging" )
EndIf
eMailAccount1 = "Hotmail"
Run( "\windows\tmail.exe", "-Service """ & eMailAccount1 & """ -Sync" )
exit
|