LTE Standard Module Series
LTE Standard MMS Application Note
LTE_Standard_MMS_Application_Note 17 / 26
//Delete the attachments by executing
AT+QMMSEDIT=5,0
.
AT+QMMSEDIT=5,0
//Delete attachments for the MMS message. All
attachments will be deleted.
OK
AT+QMMSEDIT=5
//Query the attachments.
OK
//After the MMS message is sent successfully, RAM files should be deleted by
AT+QFDEL
.
AT+QFDEL="RAM:test_mms.txt"
//Delete the RAM file.
OK
AT+QFDEL="RAM:test_pic.jpg"
//Delete the RAM file.
OK
AT+QFLST="RAM:*"
//Query the file list of RAM.
OK
3.5. Clear all Contents of MMS Messages
//Delete the content, recipients, CC recipients, BCC recipients, title and attachments of an MMS message
by
AT+QMMSEDIT=0
.
AT+QMMSEDIT=0
//Clear all contents of the MMS message.
OK
AT+QMMSEDIT=1
//Query recipients.
OK
AT+QMMSEDIT=2
//Query CC recipients.
OK
AT+QMMSEDIT=3
//Query BCC recipients.
OK
AT+QMMSEDIT=4
//Query title of the MMS message.
OK
AT+QMMSEDIT=5
//Query attachments.
OK
3.6. Send MMS Messages
//Step 1: Configure and activate a PDP context.
AT+QICSGP=1,1,"UNIWAP","" ,"",1
//Configure PDP context 1. APN is "UNIWAP" for
China Unicom.
OK
AT+QIACT=1
//Activate PDP context 1.
OK
//Activated successfully.