MMS

Send MMS messages with text and up to 10 images to recipients in supported countries.

Before you start

  • You must have an MMS-enabled number before you can use MMS
    You need an MMS-enabled phone number to be able to send MMS from your account. Contact your customer success manager to arrange one.
  • Supported countries
    The MMS channel can deliver messages to phone numbers registered in the following countries only:
    • Canada
    • The USA

Channel identifier

In the API this channel can be referenced using: mms

This identifier can be used in the rules array, and customBody sections.


Send an MMS

To send an MMS through the API:

  • ensure that your channel rules include the mms channel.
  • specify either a phoneNumber in international format or a profileId with a phone number in the to section of your request.
    This must be a number registered in one of the supported countries for the MMS channel.
  • provide a body message:
    • define a text/plain message part with the text element of your MMS.
    • define 1-10 image parts to be delivered with the text message.
{
  "to": {
    "phoneNumber": "17123123123"
  },
  "channelOptions": {
    "mms": {
      "from": "15166668399"
    }
  },
  "rules": [
    "mms"
  ],
  "messageParts": [
    {
      "name": "Body text",
      "type": "text/plain",
      "data": "Check out our latest laptop deals!"
    },
    {
      "name": "Laptop",
      "type": "image/png",
      "url": "http://cdn.dnky.co/3rdparty/comapi/images/laptop.png"
    }
  ]
}

MMS message limits

When sending MMS messages you must stay within the following constraints:

  • The maximum length of text part of the MMS is 1600 characters.
  • Only a single text/plain part can be included.
  • A minimum of one and a maximum of 10 image parts can be included.
  • The maximum size of each image cannot exceed 750,000 bytes or 732KB.
  • You can only send to phone numbers registered in supported countries.

Channel options

The following additional channel options can be used to control the MMS channel’s most common options.

To use the channel options create a object with your options in the requests channelOptions section in the mms property:

PropertyTypeDescription
fromstringThe MMS-enabled phone number you are sending from.
allowUnicodeBooleanDetermines whether Unicode characters are allowed in the message body or not.
unicodeConversionUnicode conversion settings objectThe settings for controlling automatic Unicode conversion

Unicode conversion settings object

PropertyTypeDescription
convertUnicodeToGsmBooleanDetermines whether we try to convert Unicode characters to their closest match in the GSM character set or not.
customReplacementsarray (Replacement object)A list of specific Unicode character mappings to apply to the Unicode conversion, overriding the default mappings.

Replacement object

PropertyTypeDescription
fromstringThe single Unicode character to map from.
tostringThe GSM character to map to.

{
  "body": "Sending SMS with the One API is easy!",
  "to": {
    "phoneNumber": "447123123123"
  },
  "channelOptions": {
  	"sms": {
  		"from": "Acme",
  		"allowUnicode": true
  	}
  },
  "rules": [
    "sms"
  ]
}
{
  "body": "Dzień dobry, w czym mogę pomóc?",
  "to": {
    "phoneNumber": "447123123123"
  },
  "channelOptions": {
    "sms": {
      "from": "Comapi",
      "allowUnicode": false,
      "unicodeConversion": {
        "convertUnicodeToGsm": true
      }
    }
  },
  "rules": [
    "sms"
  ]
}
{
  "body": "Dzień dobry, w czym mogę pomóc?",
  "to": {
    "phoneNumber": "447990766636"
  },
  "channelOptions": {
    "sms": {
      "from": "Comapi",
      "allowUnicode": false,
      "unicodeConversion": {
        "convertUnicodeToGsm": true,
        "customReplacements": [
          {
            "from": "ó",
            "to": "o"
          },
          {
            "from": "ń",
            "to": "n"
          }
        ]
      }
    }
  },
  "rules": [
    "sms"
  ]
}

Automatically remove Unicode characters

We offer an optional feature for the MMS channel to convert Unicode characters to GSM-based characters. This feature tries to map Unicode characters to a visually similar character in the GSM alphabet, for example, the character ą would be mapped to a, or ś to s.

To enable this feature, specify a unicodeConversion object and ensure the convertUnicodeToGsm is set to true. You can specify custom replacement character mappings if you want to.

With the option enabled, the following message is converted from "Dzień dobry, w czym mogę pomóc?" to "Dzien dobry, w czym moge pomoc?" removing all the Unicode characters automatically.

🚧

Replacements not guaranteed

The library tries to convert most common Unicode characters used in Latin-based character sets to a GSM equivalent, but we cannot guarantee that it can detect and replace them all.

If there are specific mappings you want to address, you can add your own character mappings by specifying an array of mappings in the customReplacements array under the unicodeConversion node. A custom set of mappings replaces the default set.


Receipts and inbounds

To receive feedback or inbound messages from MMS sends please see the following:

📘

Inbound MMS

We don’t support receiving MMS; usually if a customer replies to an MMS it is text-based and is sent as an SMS.

Receipts

If you need to to know the status of messages you've sent using one of our APIs, you can request that delivery receipts are forwarded to a URL of your choosing using the webhook system.

You can receive the following types of receipts:

  • Sent
  • Delivered
  • Expired
  • Failed