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

ColumnRequiredDescription
channel_order'international'
recipientRecipient number (international format, for example 821012341234)
msg_status'1'
request_dateSend request time
mt_contentMessage content
callbackSender number
origin_cidSender identification code

Recipient number format

CountryFormatExample
Korea82 + area code + number821012341234
United States1 + area code + number12125551234
Japan81 + number819012345678

Example

SQL
INSERT INTO msg_tran (
    channel_order, recipient, msg_status, request_date,
    callback, mt_content
) VALUES (
    'international', '821012341234', '1', NOW(),
    '발신번호', '국제 문자 테스트입니다.'
);