Hi there,
im using Voicetrading to send SMSs via a custom application ive built, english is great, but when it comes to hebrew, i get blank messages.
I use this code:
$ch = curl_init($smsRequest);
curl_setopt($ch, CURLOPT_URL, $smsRequest);
curl_setopt($ch,CURLOPT_HTTPHEADER,array('Content-Type: application/x-www-form-urlencoded; charset="utf-8"'));
//curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
//curl_setopt($ch, CURLOPT_HEADER, false);
//curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($ch);
curl_close($ch);
do you have any idea how to solve it? or is it possible?
Thanks!