ContactItem.Email3Address Property

Outlook Developer Reference

Returns or sets a String representing the e-mail address of the third e-mail 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 e-mail address for the third e-mail entry of a contact.

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

See Also