> I am writing a program to send SMS using AT commands
> Lets say I want to send the same SMS to more than one number,
> is there a way to provide a list of phone numbers before
> sending that message?
No. You'll need to use multiple invocations of AT+CMGS or
AT+CMSS, in either text-mode or PDU-mode. This guarantees that
you get a unique message reference number (within the range 0 to
255) for each destination.
John