I am using the following code to pull email details out of Outlook and into Access.
SELECT *
FROM Inbox IN 'C:\Temp'[Exchange 4.0;MAPILEVEL=me@mycompany.com|];
However, we have a team email box that I want to pull instead but the name of the box includes brackets
Team Support [Company]
So this code is failing, and I cannot figure out how to have it recognize the brackets as part of the name.
FROM Inbox IN 'C:\Temp'[Exchange 4.0;MAPILEVEL=Team Support [Company]|];
I am sure this is a simple solution but can't find guidance online easily.
Thanks,
Adam