Module Values.RelayActionSource

The action relays the email via SMTP to another specific SMTP server.

Sourcetype nonrec t = {
  1. actionFailurePolicy : ActionFailurePolicy.t option;
    (*

    A policy that states what to do in the case of failure. The action will fail if there are configuration errors. For example, the specified relay has been deleted.

    *)
  2. relay : IdOrArn.t;
    (*

    The identifier of the relay resource to be used when relaying an email.

    *)
  3. mailFrom : MailFrom.t option;
    (*

    This action specifies whether to preserve or replace original mail from address while relaying received emails to a destination server.

    *)
}
Sourceval context_ : string
Sourceval make : ?actionFailurePolicy:??? -> ?mailFrom:??? -> relay:IdOrArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IdOrArn.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