Application Note for MMS receive?

Hello,
I’m currently working on converting code from using another vendor to EG25. I’ve been able to send MMS messages thanks to your documentation but I cannot find anything that describes or presents examples of how to receive MMS messages and fetch the relevant data.

I see that I get an SMS message with WAP content and URLs but have not yet been able to find documentation on how to parse and process these messages.

Do you have any documentation on how to receive MMS messages and content?

Many thanks,
Ken

Dear Kena,
Thanks for your inquiry in Quectel forum.
About MMSfunction, EG25 module just can support sending function only. So ther have no document to introduce how to receive MMS message. Please note. Thanks!

Hi Kyson
I use this to get MMS in PDU format
AT+CMGF=0
AT+CMGL=4

Then I decode the MMS and extract the MMS content URL

Then I configure the APN

AT+QICSGP
AT+QMMSCFG=“mmsc”
AT+QMMSCFG=“proxy”
AT+QMMSCFG=“contextid”,1
AT+QIACT=1

Then I use this to download the MMS content

AT+QHTTPURL=“MMS URL”
AT+QHTTPGET

But I get an error “DNS error”

Then I try the Google front page URL instead of the MMS URL, which works with no errors.

Is this EG25 limitation or I’m not doing it right?