Send Notify Text Message
| pinpointsmsvoicev2_send_notify_text_message | R Documentation |
Sends a templated text message through a notify configuration to a recipient's phone number¶
Description¶
Sends a templated text message through a notify configuration to a recipient's phone number.
Usage¶
pinpointsmsvoicev2_send_notify_text_message(NotifyConfigurationId,
DestinationPhoneNumber, TemplateId, TemplateVariables, TimeToLive,
Context, ConfigurationSetName, DryRun, MessageFeedbackEnabled)
Arguments¶
NotifyConfigurationId |
[required] The unique identifier of the notify configuration to use for sending the message. This can be either the NotifyConfigurationId or NotifyConfigurationArn. |
DestinationPhoneNumber |
[required] The destination phone number in E.164 format. |
TemplateId |
The unique identifier of the template to use for the message. |
TemplateVariables |
[required] A map of template variable names and their values. All
variable values are passed as strings regardless of the declared
variable type. For example, pass |
TimeToLive |
How long the text message is valid for, in seconds. By default this is 72 hours. |
Context |
You can specify custom data in this field. If you do, that data is logged to the event destination. |
ConfigurationSetName |
The name of the configuration set to use. This can be either the ConfigurationSetName or ConfigurationSetArn. |
DryRun |
When set to true, the message is checked and validated, but isn't sent to the end recipient. |
MessageFeedbackEnabled |
Set to true to enable message feedback for the message. When a
user receives the message you need to update the message status using
|
Value¶
A list with the following syntax:
list(
MessageId = "string",
TemplateId = "string",
ResolvedMessageBody = "string"
)
Request syntax¶
svc$send_notify_text_message(
NotifyConfigurationId = "string",
DestinationPhoneNumber = "string",
TemplateId = "string",
TemplateVariables = list(
"string"
),
TimeToLive = 123,
Context = list(
"string"
),
ConfigurationSetName = "string",
DryRun = TRUE|FALSE,
MessageFeedbackEnabled = TRUE|FALSE
)