ISExternalProvider.Email

Description

The external provider's email address, if specified.

Syntax

object.Email

Part Attribute Type Description
object Required
The object always implements the ISExternalProvider interface

Return Value

string

Example

Display the external provider's email address, if specified.

Dim aExtProvider 
Dim aCode
Dim aMessage

aCode = "JT"
Set aExtProvider = Profile.LoadExternalProvider(aCode)

if aExtProvider.ID = 0  then 
  aMessage = "No external provider with the specified code" 
else
  aMessage = aMessage & vbNewLine &_
    "Full Name:" & vbTab & "Email Address:" & vbNewLine & vbNewLine &_
    aExtProvider.FullName & vbTab & aExtProvider.Email
end if
 
Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Email can be found in Organisation > External Providers > Basic > General > E-Mail field.

Version information

Added in v7.8.0