I'm trying to send SMS through a WebService.
Sending a single SMS is simple. Just use the URL in this format:
https://xxxxx.com/sendMessage?messageText=mensagemdeteste&destination=552199998888&key=XXXX
However according to the WebService documentation I can send several at the same time with this URL format:
https://xxxxx.com/sendMessageBatch?messageText=mensagemdeteste&key=XXXX
It says that I should add the numbers in the HTTP POST BODY:
This option allows one message to be sent to more than one phone number Destination numbers need to be in the body of the HTTP POST.
The body of the POST should be composed of lines containing the destination phone numbers (line breaks only as separators):
destination1\n<destination2>\n<destination3>\n<destinationN>
But how does this work ?? I can move this body only via server, via C # for example ??