Hi,
I have Folder named Test inside Inbox and inside Test i have some Email.How to get that email in Aspose.Currently I am able Fetch mail inside Inbox not inside Test.
Current Code
string[] items = client.ListItems(sharedEmail, “Inbox”);
foreach (string item in items)
{
MapiMessage msg = client.FetchItem(item);
Console.WriteLine(“Subject:” + msg.Subject);
}
client.Dispose();
It is working fine for Inbox.it is not fetching custom folder inside Inbox.How to get that one.If provide some sample code in c# or vb.net it will be helpful.
You may need to add the folder name. In the following image, the example is loading messages from Inbox folder. You may consider setting your own folder name.
Hi ,
i am looking a custom folder outside Inbox.
for ex i have folder inbox,sentitems,drafts,deleteitems and sureshtest.i want to access sureshtest.
my code
Dim messageInfoCol As ExchangeMessageInfoCollection = client.ListMessages(shared.mail, “sureshtest”, false).it is not working.please help.
We can check all shared mailbox folders from root:
ExchangeMailboxInfo mi = client.GetMailboxInfo("sharedEmail");
foreach (ExchangeFolderInfo fi in client.ListSubFolders(mi.RootUri))
{
Console.WriteLine(fi.DisplayName);
if (fi.DisplayName.Equals("sureshtest"))
{
foreach (var m in client.ListMessages(fi.Uri))
{
Console.WriteLine(m.Subject);
}
}
}
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.