03-01-19 02:54 AM
Answered! Go to Answer.
05-06-19 03:52 PM
Dim app = CreateObject("Outlook.Application")
Dim _nameSpace = app.GetNameSpace("MAPI")
Dim folder = _nameSpace.GetDefaultFolder(Outlook_Folder_ID)
Dim olSharedRecip as object
if Profile <> "" then
_nameSpace.Logon(Profile, , True, True)
end if
if sharedEmail <> Nothing then
olSharedRecip = _nameSpace.CreateRecipient(sharedEmail)
folder = _nameSpace.GetSharedDefaultFolder(olSharedRecip, Outlook_Folder_ID)
end if08-01-19 09:44 PM
08-01-19 09:46 PM
05-06-19 03:11 PM
05-06-19 03:52 PM
Dim app = CreateObject("Outlook.Application")
Dim _nameSpace = app.GetNameSpace("MAPI")
Dim folder = _nameSpace.GetDefaultFolder(Outlook_Folder_ID)
Dim olSharedRecip as object
if Profile <> "" then
_nameSpace.Logon(Profile, , True, True)
end if
if sharedEmail <> Nothing then
olSharedRecip = _nameSpace.CreateRecipient(sharedEmail)
folder = _nameSpace.GetSharedDefaultFolder(olSharedRecip, Outlook_Folder_ID)
end if16-01-20 10:10 PM
Hi Ami,
I downloaded your release and tried running it. It runs through but doesn't pull anything.
For input paramenters on the action...........I've tried it with nothing in the Shared Email and I've tried it with the full email in shared folder and I've tried it with how the shared box shows up in my email. None of them seem to be pulling anything but don't error out. If I try to add my subfolder of "Test" it then says object can't be found. So that makes it seem like it is being read. Any ideas on how to get it going?
Thanks,
Jon
16-01-20 10:25 PM
16-01-20 10:47 PM
16-01-20 10:51 PM
20-01-20 09:34 AM