Hi Ajay,
Ajay Kanukuntla schrieb:
Hi
I am trying to send equals symbol (=) in my message using Kannel
Gateway, but when I receive on the phone, I don’t see any characters
after equal = symbol including the equals = itself.
Can somebody please help me here???
how to you prepare / send your message?
If you use http-requests to send your message make sure to urlencode the
message before delivering.
Example:
<?php
$text = "5 plus 3 = 8";
$text = urlencode($text);
echo $text;
?>
will show: 5+plus+3+%3D+8
As you see the "=" is converted to %3D. This should work then in here:
http://localhost:13000/cgi-bin/sendsms?username=my&password=secret&to=+4912345&text=
5+plus+3+%3D+8
Hth,
Lars-Hendrik