Module Values.MessageHeaderSource

Contains the name and value of a message header that you add to an email.

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

    The name of the message header. The message header name has to meet the following criteria: Can contain any printable ASCII character (33 - 126) except for colon (:). Can contain no more than 126 characters.

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

    The value of the message header. The message header value has to meet the following criteria: Can contain any printable ASCII character. Can contain no more than 995 characters. The combined length of the header name and value must not exceed 996 characters.

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