Can someone convert any of the below to its AutoIT equivalent ? CODE#Region - Event Handler when new mail arrives Dim WithEvents Items As Redemption.RDOItems ... Set Session = New Redemption.RDOSession Session.Logon Set Store = Session.Stores.DefaultStore Set Inbox = Store.GetDefaultFolder(olFolderInbox) Set Items = Inbox.Items ... Sub Items_ItemAdd(ByVal Mail As RDOMail) MsgBox "Item added: " & Mail.Subject End Sub #EndRegion