Browse our Products
Aspose.Email for CPP 25.4 Release Notes
This page contains release notes information for Aspose.Email for C++ 25.4.
Aspose.Email for C++ 25.4 is based on Aspose.Email for .NET 25.3.
Aspose.Email for C++ does not support asyncronic features of e-mail protocols
New Enhancements
Add overload of MapiContact.FromVCard method with VCardLoadOptions parameter
New Overloads:
- Introduced overloads for
FromVCard
that acceptVCardLoadOptions
instead of encoding. - Deprecated older overloads that use
Encoding
.
Example:
auto mapiContact = MapiContact::FromVCard(u"contact.vcf", MakeObject<VCardLoadOptions>());
Console::WriteLine(mapiContact->get_NameInfo()->get_DisplayName());
The full code of the examples can be found at Aspose Email for C++ GitHub examples repository.