Module Values.BulkEmailEntrySource

Sourcetype nonrec t = {
  1. destination : Destination.t;
    (*

    Represents the destination of the message, consisting of To:, CC:, and BCC: fields. Amazon SES does not support the SMTPUTF8 extension, as described in RFC6531. For this reason, the local part of a destination email address (the part of the email address that precedes the @ sign) may only contain 7-bit ASCII characters. If the domain part of an address (the part after the @ sign) contains non-ASCII characters, they must be encoded using Punycode, as described in RFC3492.

    *)
  2. replacementTags : MessageTagList.t option;
    (*

    A list of tags, in the form of name/value pairs, to apply to an email that you send using the SendBulkTemplatedEmail operation. Tags correspond to characteristics of the email that you define, so that you can publish email sending events.

    *)
  3. replacementEmailContent : ReplacementEmailContent.t option;
    (*

    The ReplacementEmailContent associated with a BulkEmailEntry.

    *)
  4. replacementHeaders : MessageHeaderList.t option;
    (*

    The list of message headers associated with the BulkEmailEntry data type. Headers Not Present in BulkEmailEntry: If a header is specified in Template but not in BulkEmailEntry, the header from Template will be added to the outgoing email. Headers Present in BulkEmailEntry: If a header is specified in BulkEmailEntry, it takes precedence over any header of the same name specified in Template : If the header is also defined within Template, the value from BulkEmailEntry will replace the header's value in the email. If the header is not defined within Template, it will simply be added to the email as specified in BulkEmailEntry.

    *)
}
Sourceval context_ : string
Sourceval make : ?replacementTags:??? -> ?replacementEmailContent:??? -> ?replacementHeaders:??? -> destination:Destination.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of MessageTagName.t ]) list ] list | `Structure of (string * [> `List of [> `String of EmailAddress.t ] list | `Structure of (string * [> `String of EmailTemplateData.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t