estoy utilizando el siguiente codigo para el envio de sms
el código funciona correctamente pero los saltos de linea no los interpreta y el mesaje llega sin ellos..
Alguien sabe si existe algun parametro para que reconozca los saltos de linea?
Código:
Set GetConnection = CreateObject("Microsoft.XMLHTTP") 'GotothisURL="http:urldondeseenvia.com?parametros" ' Conect to specified URL GetConnection.Open "get", GotothisURL, False 'on error resume next GetConnection.Send ' ResponsePage is the response we will get when visiting GotothisURL ResponsePage = GetConnection.responseText ' We will write if ResponsePage="" then Response.write "0|NO OK" else Response.write ResponsePage end if