Categories: S60 | Python | How To | Messaging | SMS | Code Examples
This page was last modified 15:48, 4 January 2008.
How read SMS in the inbox
From Forum Nokia Wiki
Python provides inbox module to read SMS. It can also notify you when a new message arrives.
import inbox i = inbox.Inbox() m = i.sms_messages() # all message ID's content_m=i.content(m[0]) # first message print i.time(m[0]) # arrive time print i.address(m[0]) # Only name is given :(
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Write a program that save sms in individual inbox | asdfghjkl_asdfghjkl | General Symbian C++ | 3 | 2006-09-23 12:06 |
| Sending SMS on a Nokia 6630 | dcdoolan | Mobile Java Networking & Messaging & Security | 0 | 2006-01-23 19:12 |
| SMS reading problem | plawres | Mobile Java Tools & SDKs | 0 | 2003-11-06 21:31 |
| Getting the contact's name from smses | strike_noir | Symbian Networking & Messaging | 2 | 2007-09-13 07:30 |
| Can I test SMS receiver on the phone without port number? | brighteyes | Mobile Java General | 10 | 2007-11-26 23:38 |
