Browse our Products
Aspose.Email for CPP 21.2 Release Notes
This page contains release notes information for Aspose.Email for C++ 21.2.
Aspose.Email for C++ 21.2 is based on Aspose.Email for .NET 21.2.
New Enhancements
Getting Message Modified Date in OLM
An OlmMessageInfo.get_ModifiedDate() method has been added to get the message modified date.
Code sample:
for (System::SharedPtr<OlmMessageInfo> messageInfo : System::IterateOver(inboxFolder->EnumerateMessages()))
{
System::DateTime modifiedDate = messageInfo->get_ModifiedDate();
}
The full code of the example can be found at Aspose Email for C++ GitHub examples repository.