retrieving the default outlook email account using Redemption
问题 just trying to work my way around using Redemption; I've got the following code to retrieve the RDOAccounts (Email accounts) from the default Profile: Profiles profiles = (Profiles)Activator.CreateInstance(Type.GetTypeFromProgID("ProfMan.Profiles")); Profile defaultProfile = profiles.DefaultProfile; //open a RDOSession for this profile RDOSession session = RedemptionLoader.new_RDOSession(); session.Logon(defaultProfile.Name); RDOAccounts accounts = session.Accounts; Where I'm stuck is trying