LTE Standard Module Series
LTE Standard MMS Application Note
LTE_Standard_MMS_Application_Note 14 / 26
3
Examples
3.1. Add Recipients
//Add phone number or email address as a recipient. The maximum number of recipients is 6.
AT+QMMSEDIT=1,1,"13856122546"
//Add a phone number as a recipient.
OK
AT+QMMSEDIT=1,1,"recipient [email protected]"
//Add an email address as a recipient.
OK
AT+QMMSEDIT=1
//Query the recipients address.
+QMMSEDIT: 1,"13856122546"
+QMMSEDIT: 1,"[email protected]"
OK
//Delete the recipients by executing
AT+QMMSEDIT=1,0
.
AT+QMMSEDIT=1,0
//Delete a recipient.
OK
AT+QMMSEDIT=1
//Query the recipients’ address.
OK
3.2. Add CC Recipients or BCC Recipients
//The operation of adding CC recipients differs from adding BCC recipients only in
<function>
value. For
CC recipients, the
<function>
value is 2. For BCC recipients, it is 3.
AT+QMMSEDIT=2,1,"13856122546"
//Add a phone number as a CC recipient.
OK
AT+QMMSEDIT=2
//Query the CC recipient address.
+QMMSEDIT: 2,"13856122546"
OK
//Delete the CC recipient by executing
AT+QMMSEDIT=2,0
.
AT+QMMSEDIT=2,0
//Delete the CC recipient.
OK
AT+QMMSEDIT=2
//Query the CC recipient address.