send_sms
Send SMS messages to phone numbers using the 46elks API. Specify recipient number, message content, and optional sender ID or flash SMS settings for immediate delivery.
Instructions
Send SMS message via 46elks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dry_run | No | Test mode - verify request without sending actual SMS (optional, defaults to environment setting) | |
flashsms | No | Set to "yes" for flash SMS that displays immediately and is not stored (optional) | |
from | No | Sender phone number or name (optional, uses default if not specified) | |
message | Yes | SMS message content (max 160 characters for single SMS) | |
to | Yes | Recipient phone number with country code - MUST be a real phone number, not a placeholder (e.g., +46XXXXXXXXX for Swedish numbers) |
Input Schema (JSON Schema)
{
"properties": {
"dry_run": {
"description": "Test mode - verify request without sending actual SMS (optional, defaults to environment setting)",
"type": "boolean"
},
"flashsms": {
"description": "Set to \"yes\" for flash SMS that displays immediately and is not stored (optional)",
"type": "string"
},
"from": {
"description": "Sender phone number or name (optional, uses default if not specified)",
"type": "string"
},
"message": {
"description": "SMS message content (max 160 characters for single SMS)",
"type": "string"
},
"to": {
"description": "Recipient phone number with country code - MUST be a real phone number, not a placeholder (e.g., +46XXXXXXXXX for Swedish numbers)",
"type": "string"
}
},
"required": [
"to",
"message"
],
"type": "object"
}