Module Values.SendTemplatedEmailResponseSource

Composes an email message using an email template and immediately queues it for sending. To send email using this operation, your call must meet the following requirements: The call must refer to an existing email template. You can create email templates using the CreateTemplate operation. The message must be sent from a verified email address or domain. If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide. The maximum message size is 10 MB. Calls to the SendTemplatedEmail operation may only include one Destination parameter. A destination is a set of recipients that receives the same version of the email. The Destination parameter can include up to 50 recipients, across the To:, CC: and BCC: fields. The Destination parameter must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain), the entire message is rejected, even if the message contains other recipients that are valid. If your call to the SendTemplatedEmail operation includes all of the required parameters, Amazon SES accepts it and returns a Message ID. However, if Amazon SES can't render the email because the template contains errors, it doesn't send the email. Additionally, because it already accepted the message, Amazon SES doesn't return a message stating that it was unable to send the email. For these reasons, we highly recommend that you set up Amazon SES to send you notifications when Rendering Failure events occur. For more information, see Sending Personalized Email Using the Amazon SES API in the Amazon Simple Email Service Developer Guide.

Sourcetype sendTemplatedEmailResult = {
  1. messageId : MessageId.t option;
    (*

    The unique message identifier returned from the SendTemplatedEmail action.

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. sendTemplatedEmailResult : sendTemplatedEmailResult;
  2. responseMetaData : responseMetaData;
}
Sourcetype error = [
  1. | `AccountSendingPausedException of AccountSendingPausedException.t
  2. | `ConfigurationSetDoesNotExistException of ConfigurationSetDoesNotExistException.t
  3. | `ConfigurationSetSendingPausedException of ConfigurationSetSendingPausedException.t
  4. | `MailFromDomainNotVerifiedException of MailFromDomainNotVerifiedException.t
  5. | `MessageRejected of MessageRejected.t
  6. | `TemplateDoesNotExistException of TemplateDoesNotExistException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval context_ : string
Sourceval make : ?messageId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccountSendingPausedException of unit | `ConfigurationSetDoesNotExistException of ConfigurationSetDoesNotExistException.t | `ConfigurationSetSendingPausedException of ConfigurationSetSendingPausedException.t | `MailFromDomainNotVerifiedException of unit | `MessageRejected of unit | `TemplateDoesNotExistException of TemplateDoesNotExistException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccountSendingPausedException of unit | `ConfigurationSetDoesNotExistException of ConfigurationSetDoesNotExistException.t | `ConfigurationSetSendingPausedException of ConfigurationSetSendingPausedException.t | `MailFromDomainNotVerifiedException of unit | `MessageRejected of unit | `TemplateDoesNotExistException of TemplateDoesNotExistException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of MessageId.t ]) 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