Email Agent UDRs(3.3)
The Email Agent produces three types of UDRs. EmailUDR, EmailContactUDR and EmailAttachmentUDR.
EmailAttachmentUDR
This UDR is used for describing a specific attachment.
Field | Description |
---|---|
FileData (bytearray) | A bytearray representation of the attachment. |
FileName (string) | The name of the attachment. |
EmailContactUDR
This UDR is used for describing a specific contact.
Field | Description |
---|---|
Address (string) | The email address of the contact. |
Name (string) | The name of the contact. |
EmailUDR
This is the main UDR for the Email Agent. Contains all information received from the email.
Field | Description |
---|---|
Attachments (list<MailAttachmentUDR>) | A list of MailAttachmentUDRs. |
BlindCarbonCopies (list<MailContactUDR>) | A list of MailContactUDRs. |
Body (string) | The email body. |
CarbonCopies (list<MailContactUDR>) | A list of MailContactUDRs. |
Note! The agent support the following content types: text/plain , text/html and  multipart/* (for attachments) | The email content type. |
Recipients (list<MailContactUDR>) | A list of MailContactUDRs. |
Sender (MailContactUDR) | A MailContactUDR. |
Subject (string) | The email subject. |