adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / EmailRecipient Class / Address Property


In This Topic
    Address Property (EmailRecipient)
    In This Topic
    The email address
    Syntax
    'Declaration
     
    
    Public Property Address As String
    public string Address {get; set;}
    public:
    property String^ Address {
       String^ get();
       void set (    String^ value);
    }
    Remarks

    The Address is required and must be a valid email address, though no validation is performed until the address is used on a message.

    The Address can also be set to a job variable token (e.g., "RecipientList"), which is expanded when creating the notification message. The variable value can be either a single recipient or a list of recipients. See EmailRecipientList.ParseAndAdd for requirements for the format of recipients specified in a variable.

    See Also