pt80chip
Joined: 27 Feb 2008 Posts: 20
|
Posted: Fri May 16, 2008 12:55 am Post subject: |
|
|
I know its an AHK forum, however it seems I'm not the only one with mailto questions on here so I figured I'm prob going to find some answers. Thanks for the code, I did however use the following code considering that Outlook express has to be open anyway to send the email. I know it's not very efficient, however it'll do the job and it only took me a few minutes to write. Works for me, thanks for the help.
| Code: | IfWinNotExist, ahk_class Outlook Express Browser Class
{
Run, C:\Program Files\Outlook Express\msimn.exe
}
IfWinNotActive, ahk_class Outlook Express Browser Class
WinActivate, ahk_class Outlook Express Browser Class
WinWaitActive, ahk_class Outlook Express Browser Class
Sleep, 100
Send, {CTRLDOWN}n{CTRLUP}
IfWinNotActive, New Message
WinActivate, New Message
WinWaitActive, New Message
Sleep, 100
Send, xxx@XXXXXXX.com
Send, {TAB 2}Hi - %TimeString%
Send, {CTRLDOWN}{ENTER}{CTRLUP}
|
|
|