Create, Save and Read Outlook Contacts
Contents
[
Hide
]
Aspose.Email - Create, Save and Read Outlook Contacts
The following steps can be used to create and save a contact to disc:
- Instantiate a new object of the MapiContact class.
- Enter information related to various properties of the contact.
- Add photo data to the contact, if any.
- Save the contact as MSG or VCard format.
Java
MapiContact contact = new MapiContact("Sebastian Wright", "SebastianWright@dayrep.com");
contact.setNameInfo(new MapiContactNamePropertySet("Bertha", "A.", "Buell"));
contact.setProfessionalInfo(new MapiContactProfessionalPropertySet("Awthentikz", "Social work assistant"));
contact.getPersonalInfo().setPersonalHomePage("B2BTies.com");
contact.getPhysicalAddresses().getWorkAddress().setAddress("Im Astenfeld 59 8580 EDELSCHROTT");
contact.getElectronicAddresses().setEmail1(new MapiContactElectronicAddress("Experwas", "SMTP", "BerthaABuell@armyspy.com"));
contact.setTelephones(new MapiContactTelephonePropertySet("06605045265"));
// Set Photo Data
File fi = new File(dataDir + "Aspose.jpg");
byte[] fileContent = Files.readAllBytes(fi.toPath());
MapiContactPhoto photo = new MapiContactPhoto(fileContent, MapiContactPhotoImageFormat.Jpeg);
contact.setPhoto(photo);
// Save as MSG
contact.save(dataDir + "contact.msg", ContactSaveFormat.Msg);
// Loading MSG
MapiMessage msg = MapiMessage.fromFile(dataDir + "contact.msg");
MapiContact mapiContact = (MapiContact)msg.toMapiMessageItem();
Download Running Code
Download Sample Code
For more details, visit Creating, Saving and Reading Outlook Contacts.