_ContactItem.ForwardAsBusinessCard Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new MailItem object containing contact information and, optionally, an Electronic Business Card (EBC) image based on the specified ContactItem object.
public:
Microsoft::Office::Interop::Outlook::MailItem ^ ForwardAsBusinessCard();
public Microsoft.Office.Interop.Outlook.MailItem ForwardAsBusinessCard ();
Public Function ForwardAsBusinessCard () As MailItem
Returns
A MailItem object that represents the new e-mail item containing the business card information.
Remarks
This method creates a new Outlook mail item based on the information stored in the ContactItem object. The information included in the Outlook mail item depends on the value of the BodyFormat property for the MailItem object:
Property value | Result | |
olFormatPlain | A vCard (.vcf) file is created and added to the Attachments collection of the MailItem object. | |
olFormatRichText | A vCard file is created and added to the Attachments collection of the MailItem object. | |
olFormatHTML | An image of the Electronic Business Card is generated and included in the Body property of the MailItem object, and a vCard file is created and added to the Attachments collection of the MailItem object. |
Note: The attached vCard file contains only the contact information included in the Electronic Business Card associated with the ContactItem object. Any contact information not displayed in the Electronic Business Card is excluded from the vCard file.