mfurman Posted April 23, 2010 Posted April 23, 2010 (edited) I'm brand new to autoit and what i'm looking for is a a way to automate the process of creating a new email account in Outlook Express 6, Windows Mail and Windows Mail live is this possible? also is it possible to have it run from a website?.I work for a ISP and we are looking to automate most of the customer service issues. Mark Edited April 23, 2010 by mfurman
omnomnom Posted April 23, 2010 Posted April 23, 2010 the Send command, MouseMove command and MouseClick command are what you need. Look at the helpfile in autoit, it is very simple to do.
mfurman Posted April 23, 2010 Author Posted April 23, 2010 I think I got it figured out for windows live mail here is what i've tested: expandcollapse popupRun("C:\Program Files\Windows Live\Mail\wlmail.exe") sleep(5000) $username = InputBox("Account Information", "How would you like your name displayed IE: John Smith") $emailaddress = InputBox("Account Information", "Please Enter Your Email Address") $password = InputBox("Account Information", "Please Enter Your Password", "","*") Send("!t") Send("{DOWN}") Send("{DOWN}") Send("{DOWN}") Send("{DOWN}") Send("{DOWN}") Send("{DOWN}") Send("{Enter}") Send("!a") Send("{Enter}") Send($emailaddress, 1) Send("{TAB}") Send("{TAB}") Send($password, 1) Send("{TAB}") Send("{TAB}") Send($username, 1) Send("{TAB}") Send("{SPACE}") Send("{ENTER}") Send("{TAB}") Send("pop.youraddress.com") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send($emailaddress, 1) Send("{TAB}") Send("smtp.youraddress.com") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{ENTER}") Send("{ENTER}") Send("{TAB}") Send("{ENTER}") Send("{ENTER}")
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now