Hi there, i have a script i create for sms command it looks like
./command.sh {SMSSENDER} {COMMANDPARAM}
My problem is, I’m assuming, playsms sends the smssender with the plus sign, which messes my script because I am calling a php script via curl.
So instead of
"254702123456 message"
it loooks like this
“%2B254702123456 message”
Seeing that a plus sign is converted to “%2B” in a web browser.
Is there a way to have that plus sign removed when using {SMSSENDER} ?