Andrea, in MSDN trovi tutto, vero è che serve dedicarcisi e leggere con attenzione...
Quello che chiedevi erano i Membri dell'Oggetto MailItem...? Intesi come Metodi/Eventi/Proprietà....?
Seguendo i Link:
https://msdn.microsoft.com/it-it/lib.../ff861252.aspx
L'oggetto NameSpace o Session consentono di accedere alla Collection Accounts, come esempio sotto:
Public Sub New_Mail()
Dim olNS As Outlook.NameSpace
Dim oMail As Outlook.MailItem
Set olNS = Application.GetNamespace("MAPI")
Set oMail = Application.CreateItem(olMailItem)
'use first account in list
oMail.SendUsingAccount = olNS.Accounts.Item(1)
oMail.Display
Set oMail = Nothing
Set olNS = Nothing
End Sub
Oppure
Sub Which_Account_Number()
'Don't forget to set a reference to Outlook in the VBA editor
Dim OutApp As Outlook.Application
Dim I As Long
Set OutApp = CreateObject("Outlook.Application")
For I = 1 To OutApp.Session.Accounts.Count
MsgBox OutApp.Session.Accounts.Item(I) & " : This is account number " & I
Next I
End Sub
Non c'è molto da inventarsi è tutto ben descritto e definito.