/// <summary>
/// The MAPILogon function begins a Simple MAPI session, loading the default message store
/// and address book providers.
/// </summary>
[DllImport("MAPI32.DLL", CharSet=CharSet.Ansi)]
public static extern uint MAPILogon(IntPtr ulUIParam, string lpszProfileName, string lpszPassword,
uint flFlags, uint ulReserved, ref IntPtr lplhSession);
Please add!
None.
The calling application's working directory may be changed after using this function.
Please add some!
uint error = MAPILogon(hwnd, null, null, MAPI_LOGON_UI, 0, ref session);
return error == 0;
Do you know one? Please contribute it!