Workmailmessageflow

This page documents function available when using the Workmailmessageflow module, created with @service Workmailmessageflow.

Index

Documentation

Main.Workmailmessageflow.get_raw_message_contentMethod
get_raw_message_content(message_id)
get_raw_message_content(message_id, params::Dict{String,<:Any})

Retrieves the raw content of an in-transit email message, in MIME format.

Arguments

  • message_id: The identifier of the email message to retrieve.
source
Main.Workmailmessageflow.put_raw_message_contentMethod
put_raw_message_content(content, message_id)
put_raw_message_content(content, message_id, params::Dict{String,<:Any})

Updates the raw content of an in-transit email message, in MIME format. This example describes how to update in-transit email message. For more information and examples for using this API, see Updating message content with AWS Lambda. Updates to an in-transit message only appear when you call PutRawMessageContent from an AWS Lambda function configured with a synchronous Run Lambda rule. If you call PutRawMessageContent on a delivered or sent message, the message remains unchanged, even though GetRawMessageContent returns an updated message.

Arguments

  • content: Describes the raw message content of the updated email message.
  • message_id: The identifier of the email message being updated.
source