International SMS
Only single sends are supported. Enter the recipient number in international format, including the country code.
internationalInternational SMS
A single SMS channel that sends overseas with the country code included.
Single sendCountry code includedConcatenated long message
Input fields
| Column | Required | Description |
|---|---|---|
channel_order | ✅ | 'international' |
recipient | ✅ | Recipient number (international format, for example 821012341234) |
msg_status | ✅ | '1' |
request_date | ✅ | Send request time |
mt_content | ✅ | Message content |
callback | Sender number | |
origin_cid | Sender identification code |
Recipient number format
| Country | Format | Example |
|---|---|---|
| Korea | 82 + area code + number | 821012341234 |
| United States | 1 + area code + number | 12125551234 |
| Japan | 81 + number | 819012345678 |
Example
SQL
INSERT INTO msg_tran (
channel_order, recipient, msg_status, request_date,
callback, mt_content
) VALUES (
'international', '821012341234', '1', NOW(),
'발신번호', '국제 문자 테스트입니다.'
);