We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I set the character set? Defaults to GSM alphabet but want it to detect
$message = new \Esendex\Model\DispatchMessage( $source, // Send from $destination, // Send to any valid number $text, \Esendex\Model\Message::SmsType ); $authentication = new \Esendex\Authentication\LoginAuthentication( $GLOBALS['EsendexAccountNo'], $GLOBALS['EsendexLogin'], $GLOBALS['EsendexPassword'] ); $service = new \Esendex\DispatchService($authentication); $result = $service->send($message); print $result->id() . "\n\n"; return $result;
The text was updated successfully, but these errors were encountered:
I tried inserting the line \Esendex\Model\MessageBody::CharsetAuto after SMSType without success
\Esendex\Model\MessageBody::CharsetAuto
Sorry, something went wrong.
As a work around I've changed the $characterSet value from null to "Auto" in DispatchMessage.php . I'm missing a trick somewhere.
No branches or pull requests
How can I set the character set? Defaults to GSM alphabet but want it to detect
The text was updated successfully, but these errors were encountered: