I'm sending an SMS message programatically, but it doesn't seem to be showing up in the outbox.
Any ideas?
Here is the code I'm using to send it:
Code:
_mc = (MessageConnection)Connector.open(_address);
Message message = _mc.newMessage(MessageConnection.TEXT_MESSAGE);
TextMessage textm = (TextMessage)message;
textm.setPayloadText(_msg);
_mc.send(textm);
_mc.close();
Thanks in advance!