exports.sendSMS = function (session, to, text, sourceAddress, jsonMessageHistoryIds, callback) {
console.log('messege',text);
session.submit_multi({
source_addr: sourceAddress,
dest_address: to,
short_message: text
}, function (pdu) {
console.log('submit_multi: ', pdu.command_status);
console.log("PDU", pdu);
if (pdu.command_status == 0) {
// insert into sms smpp logs
var values = {
type: 'bulk',
message: text,
numbers: JSON.stringify(to)
};
console.log(pdu.message_id);
callback(null, pdu.message_id);
}
});
};
If the messege is below 160 character it is okey .Messege will be sent but if messege is above 160 character then it will throw new TypeError value argument is out of bounds in buffer.js if sms messege is too long.Please Help .will really appreciate any help
solved this problem by this ..hope it helps someone someday