Values.RowSourceA result row containing metadata for an archived email message.
type nonrec t = {archivedMessageId : ArchivedMessageId.t option;The unique identifier of the archived message.
*)receivedTimestamp : Timestamp.t option;The timestamp of when the email was received.
*)date : String_.t option;The date the email was sent.
*)to_ : String_.t option;The email addresses in the To header.
*)from : String_.t option;The email address of the sender.
*)cc : String_.t option;The email addresses in the CC header.
*)subject : String_.t option;The subject header value of the email.
*)messageId : String_.t option;The unique message ID of the email.
*)hasAttachments : Boolean.t option;A flag indicating if the email has attachments.
*)receivedHeaders : EmailReceivedHeadersList.t option;The received headers from the email delivery path.
*)inReplyTo : String_.t option;The email message ID this is a reply to.
*)xMailer : String_.t option;The user agent that sent the email.
*)xOriginalMailer : String_.t option;The original user agent that sent the email.
*)xPriority : String_.t option;The priority level of the email.
*)ingressPointId : IngressPointId.t option;The ID of the ingress endpoint through which the email was received.
*)senderHostname : String_.t option;The name of the host from which the email was received.
*)senderIpAddress : SenderIpAddress.t option;Mail archived with Mail Manager: The IP address of the client that connects to the ingress endpoint. Mail sent through a configuration set with the archiving option enabled: The IP address of the client that makes the SendEmail API call.
*)envelope : Envelope.t option;The SMTP envelope information of the email.
*)sourceArn : String_.t option;Specifies the archived email source, identified by either a Rule Set's ARN with an Archive action, or a Configuration Set's Archive ARN.
*)}val make :
?archivedMessageId:??? ->
?receivedTimestamp:??? ->
?date:??? ->
?to_:??? ->
?from:??? ->
?cc:??? ->
?subject:??? ->
?messageId:??? ->
?hasAttachments:??? ->
?receivedHeaders:??? ->
?inReplyTo:??? ->
?xMailer:??? ->
?xOriginalMailer:??? ->
?xPriority:??? ->
?ingressPointId:??? ->
?senderHostname:??? ->
?senderIpAddress:??? ->
?envelope:??? ->
?sourceArn:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of [> `String of String_.t ] list
| `String of ArchivedMessageId.t
| `Structure of
(string
* [> `List of [> `String of String_.t ] list
| `String of String_.t ])
list
| `Timestamp of Timestamp.t ])
list ]