Hello,
i just tried to deal with some vcard files, which i saved from my MS Outlook contacts.
Everytime when the program tries to load a vcard, an exception “header doesn’t correspond to vCard format” is thrown.
I am using aspose python library
Code :
def run():
dataDir = “Data/”
#ExStart: LoadingContactFromVCF
VCardContact.load(dataDir + “Contact.vcf”)
apiContact = MapiContact.from_vcard(dataDir + "Contact.vcf")
#ExEnd: LoadingContactFromVCF
Thanks,
Tejas