Module Values.ExtensionFieldSource

Additional X-headers to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces. For information about receiving email through Amazon SES, see the Amazon SES Developer Guide.

Sourcetype nonrec t = {
  1. name : ExtensionFieldName.t;
    (*

    The name of the header to add. Must be between 1 and 50 characters, inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only.

    *)
  2. value : ExtensionFieldValue.t;
    (*

    The value of the header to add. Must contain 2048 characters or fewer, and must not contain newline characters ("\r" or "\n").

    *)
}
Sourceval context_ : string
Sourceval make : name:ExtensionFieldName.t -> value:ExtensionFieldValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ExtensionFieldName.t ]) 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