adTempus API
ArcanaDevelopment.adTempus.Shared.EmailProcessing Namespace / EmailMessageEvaluator Class / PropertyName Field

In This Topic
    PropertyName Field
    In This Topic
    The field to look at.
    Syntax
    'Declaration
     
    
    <DataMemberAttribute()>
    Public PropertyName As String
    [DataMember()]
    public string PropertyName
    Remarks
    The following standard tags can be used for EmailFilterType.Message: * From The message sender (name and address) * To The recipients in the TO field (names and addresses) * CC The recipients in the CC field (names and addresses) * Recipients The recipients in either the TO or CC fields (names and addresses) * Subject The message subject * Body The message body. Will look at both text and HTML body parts, if present, but not other attachments. Use EmailMessageAttachmentEvaluator to evaluate attachments. * Header The header with the name specified in the PropertySubName field. For any other value, the evaluator looks for a header with the specified name. The following tags can be used for EmailFilterType.Attachment: * Name The name of the attachment * Extension The file extension of the attachment * ContentType The content type/subtype of the attachment * Content The content of the attachment
    See Also