Browse our Products

Aspose.Email for CPP 21.2 Release Notes

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.