Converting contact to html has misspell in “First name” field name
aspose-email-21.6 used
Example:
FileInputStream in = new FileInputStream("…\Aaron George.vcf");
MapiContact contact = MapiContact.fromVCard(in, Charset.forName(“UTF-8”));
ContactInfo info = new ContactInfo(contact);
System.out.println(info.getContactHtmlString());
Example contact attached Aaron George.zip (413 Bytes)
Corrupted result part:
…
Fist Name: Aaron
…
Expected:
…
First Name: Aaron
…