一键导入
send-mms
Send MMS (multimedia) messages via the Kudosity platform. Use when the user wants to send a message with images, GIFs, videos, or audio to a recipient.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Send MMS (multimedia) messages via the Kudosity platform. Use when the user wants to send a message with images, GIFs, videos, or audio to a recipient.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Create contact lists and add contacts to them on the Kudosity platform. Use when the user wants to create a new contact list, add recipients to a list, or manage list contacts for SMS campaigns.
Send SMS messages via the Kudosity platform. Use when the user wants to send a text message to a single recipient or to a contact list. Supports scheduling, link tracking, and delivery callbacks.
Create and manage webhooks on the Kudosity platform. Use when the user wants to receive notifications for SMS delivery status, inbound messages, MMS events, link hits, or opt-outs.
基于 SOC 职业分类
| name | send-mms |
| description | Send MMS (multimedia) messages via the Kudosity platform. Use when the user wants to send a message with images, GIFs, videos, or audio to a recipient. |
MMS messages are sent via the Kudosity V2 API and support images, GIFs, videos, and audio attachments.
x-api-key: {KUDOSITY_API_KEY}/kudosity-sms:setupPOST https://api.transmitmessage.com/v2/mmsapplication/jsoncurl commandsRequired:
sender (string): The sender number (must be assigned to the account)recipient (string): Destination number (local or E.164 international format)content_urls (array of strings): URLs to the media files to attachOptional:
subject (string): Message subject — max 20 characters, ASCII onlymessage (string): Body text — max 1,000 characters. Use [opt-out-link] for opt-out if requiredmessage_ref (string, max 500 chars): Your reference ID, returned in webhookstrack_links (boolean): Enable link tracking with shortened URLscurl -s -X POST "https://api.transmitmessage.com/v2/mms" \
-H "x-api-key: ${KUDOSITY_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"subject": "New Arrival",
"message": "Check out our latest product!",
"sender": "61481074185",
"recipient": "61435795809",
"content_urls": ["https://example.com/product.jpg"]
}'
| Format | Type | Media Type | Limit |
|---|---|---|---|
| JPEG, JPG | Image | image/jpeg | Up to 400 KB |
| GIF (incl. animated) | Image | image/gif | Up to 400 KB |
| PNG | Image | image/png | Up to 400 KB |
| BMP | Image | image/bmp | Up to 400 KB |
| MP3 | Audio | audio/mpeg | Up to 400 KB |
| WAV | Audio | audio/wav | Up to 400 KB |
| MPEG, MPG, MP4 | Video | video/mpeg4 | Up to 400 KB |
For best visibility on mobile devices, use one of these recommended sizes:
Note: Some older handset models have limited support for certain image formats, so results may vary.
https://example.com/image.jpg), not relative pathssubject field is limited to 20 characters and ASCII characters only