View source: R/ses_operations.R
ses_send_raw_email | R Documentation |
Composes an email message and immediately queues it for sending.
See https://www.paws-r-sdk.com/docs/ses_send_raw_email/ for full documentation.
ses_send_raw_email(
Source = NULL,
Destinations = NULL,
RawMessage,
FromArn = NULL,
SourceArn = NULL,
ReturnPathArn = NULL,
Tags = NULL,
ConfigurationSetName = NULL
)
Source |
The identity's email address. If you do not provide a value for this parameter, you must specify a "From" address in the raw text of the message. (You can also specify both.) Amazon SES does not support the SMTPUTF8 extension, as described inRFC6531. For this reason, the email address string must be 7-bit ASCII. If you want to send to or from email addresses that contain Unicode characters in the domain part of an address, you must encode the domain using Punycode. Punycode is not permitted in the local part of the email address (the part before the @ sign) nor in the "friendly from" name. If you want to use Unicode characters in the "friendly from" name, you must encode the "friendly from" name using MIME encoded-word syntax, as described in Sending raw email using the Amazon SES API. For more information about Punycode, see RFC 3492. If you specify the |
Destinations |
A list of destinations for the message, consisting of To:, CC:, and BCC: addresses. |
RawMessage |
[required] The raw email message itself. The message has to meet the following criteria:
|
FromArn |
This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to specify a particular "From" address in the header of the raw email. Instead of using this parameter, you can use the X-header
For information about when to use this parameter, see the description of
|
SourceArn |
This parameter is used only for sending authorization. It is the ARN of
the identity that is associated with the sending authorization policy
that permits you to send for the email address specified in the For example, if the owner of Instead of using this parameter, you can use the X-header
For information about when to use this parameter, see the description of
|
ReturnPathArn |
This parameter is used only for sending authorization. It is the ARN of
the identity that is associated with the sending authorization policy
that permits you to use the email address specified in the For example, if the owner of Instead of using this parameter, you can use the X-header
For information about when to use this parameter, see the description of
|
Tags |
A list of tags, in the form of name/value pairs, to apply to an email
that you send using |
ConfigurationSetName |
The name of the configuration set to use when you send an email using
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.