Sending MMS
You can use BizMessage Agent to send MMS(Multimedia Messaging Service).
NOTE
- For detailed information on specifications by message type, refer to the Appendix. Layout Guide and Message Specs document.
- Please refer to the Table Specification document for the data you enter in each table.
코드예제Sample Code of Sending MMS
INSERT INTO K_MESSAGE (
PHONE_MSG,
TITLE,
MSG_TYPE,
MOBILE_NO,
SENDER_NO,
SEND_TYPE,
RESERVE_DATE,
IMG_ATTACH_CD,
MMS_IMG1,
MMS_IMG2,
MMS_IMG3,
REG_DATE
) VALUES (
‘This is an MMS message.’,
‘This is the MMS title.’,
'XM', # For details of message type, see the Table Specification.
'99999999999', # Recipient’s number needs to be changed.
'99999999999', # Sender’s number needs to be changed.
'S', # Sending Type : S - Real time, M – Batch
now(),
‘M’, # IMG_ATTACH_CD (If there is an image, enter M)
‘${image_path}’, # MMS_IMG1 : Absolute path of the 1st image
‘${image_path}’, # MMS_IMG1 : Absolute path of the 2nd image
‘${image_path}’, # MMS_IMG1 : Absolute path of the 3rd image
now()
);