Jump to content

automating outlook express,windows live mail etc


Recommended Posts

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 by mfurman
Link to comment
Share on other sites

I think I got it figured out for windows live mail here is what i've tested:

Run("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}")
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...