In my project, I want to send a unicoded text(UTF-8) SMS message through PDU-Submit. I've been searching a lot but all answers using Text-Mode and not PDU-Submit command, therefore I can't send multipart SMS. I want to have a solution for multi-part unicode messages.
Asked
Active
Viewed 8,871 times
2 Answers
4
Finally I have found the answer and use it.my program works fine. Sending a Concatenated(Multi-Part) SMS in Unicode Format Using PDU, is the same sending a simple septet-character SMS using AT+CMGS Command except you must set the DCS byte to 08.You can earn more Info on these threads:

Community
- 1
- 1

Hassan TBT
- 113
- 3
- 10
-
is it possible to send multipart sms in text mode i.e `AT+CMGF=1" – dmSherazi Jul 07 '14 at 07:57
2
You can send SMS messages with the AT+CMGS
command in PDU mode (enable with AT+CMGF=0
). The syntax (for pdu mode) is
AT+CMGS=<length><CR>
PDU is given<ctrl-Z/ESC>
I do not know if you are supposed to split into multipart yourself and send each part separately or if this command does that for you. I think maybe the latter, the description of the command says
Execution command sends message from a TE to the network (SMS-SUBMIT).
If/when you find out, feel free to update this answer with regards to that.

hlovdal
- 26,565
- 10
- 94
- 165
-
Dear hlovdal,thanks for your respond, I have found that, bellow is my answer. – Hassan TBT Apr 18 '13 at 10:14
-