ContactItem.Email3Address property (Outlook)

Returns or sets a String representing the email address of the third email entry for the contact. Read/write.

Syntax

expression. Email3Address

expression A variable that represents a ContactItem object.

Example

This Visual Basic for Applications (VBA) example sets "someone@example.com" as the email address for the third email entry of a contact.

Sub CreatePeerContact() 
 
 Dim myItem As Outlook.ContactItem 
 
 
 
 Set myItem = Application.CreateItem(olContactItem) 
 
 myItem.Email3Address = "someone@example.com" 
 
 myItem.Display 
 
End Sub

See also

ContactItem Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.