Using Commands To Send And Read Sms
Introduction
This article discusses how to use AT commands to send and receive SMS. It can be used to create a PC application that sendSMS from the phone. This kind of application is useful, for example, in automating test cases related to SMS.
Note that not all phones support all SMS AT commands. For example,some phones may support send command only and not support read command. See also links at the end of this article to find more about AT commands, including complete list of SMS ATcommands on Nokia's GSM and WCDMA products.
Message Format
There are basically two modes to work with SMS, i.e.:
* PDU (Protocol Data Unit)
* Text mode.
A mobilephone internally uses PDU format. Developers normally uses text mode because it is easier to use. AT+CMGF is the command to set the mode.
AT+CMGF=0
sets the formatto PDU mode.
AT+CMGF=1
sets the format to text mode.
AT+CMGF?
queries the current format.
Sending SMS
Although you can send SMS in PDU ortext mode, it is easier to use text mode to type the message.
The following commands change the message format to text mode and send a text message.
AT+CMGF=1OK
AT+CMGS="7789952010"
> Hello World�<Ctrl>+<Z>
+CMGS: 44
OK
Note that <Ctrl>+<Z> has to be entered at the end of message to send the message.Reading SMS
Use the following command to read the list of all messages on the phone:
AT+CMGL="ALL"
+CMGL: 123,"REC READ","+123456789"
Hello World
OKUse the following command to read a message with has index of 123:
AT+CMGR=123
+CMGR: "REC READ","+17789975545","08/09/05,17:46:49-12"
Hello World
OK
Regístrate para leer el documento completo.