Archived:How to send SMS using PySymbian
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
Article Metadata
Tested with
Devices(s): Nokia N95, Nokia E90
Compatibility
Platform(s): S60 1st Edition, S60 2nd Edition, S60 3rd Edition
Article
Keywords: messaging
Created: cyke64
(15 Mar 2007)
Last edited: hamishwillee
(08 May 2013)
Overview
This snippet shows how to send SMS in Python.
Source file
import messaging
messaging.sms_send("number", u"message")
Postconditions
The message (in Unicode format) is sent to the specified number (in string format).
The underlying messaging subsystem in S60 devices might give error messages to the user if the device is not connected to a network while trying to send a message (an "SMS send failed!" note is a common error message). When sending messages in offline-mode or with no network connection these messages are actually added to an outgoing message queue and they might be sent if the device is later on connected to a suitable network. This occurs despite the possibly misleading error messages. The current network conditions can be checked e.g. with sysinfo.active_profile() and sysinfo.signal_bars() invocations.


19 Sep
2009
21 Sep
2009
Any answers available?
How to send SMS messages from Flash in latest S60 3rd Edition devices. This sample DOES NOT WORK!!?