Click or drag to resize

IEmailAddress Property

The e-mail address. e.g. 'foo.bar@example.com' A string representing the actual email address, e.g. sdk@superoffice.com

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string Address { get; set; }

Property Value

Type: String
String – the objects email address
Examples

Address

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    MsgBox "Current contact first email address: " & objSO.Currentcontact.Emails.Item(1).address, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also