good day all,

i was having a little difficulty in trying to code an application in python to read sms

i do something like this

import inbox
import sms

but i still dont know where to go from there.

The main objective of the code is to intercept sms messages from any mobile (Android, blackberry, etc) and send to a web application. Please any ideas or source code that can help...most appreciated

Thanking you all...

Recommended Answers

All 2 Replies

what is your targeted devise? if sysmbian:

import inbox    
box = inbox.Inbox(inbox.EInbox)
for sms_ID in box.sms_messages():
    print box.content(sms_ID)

btw, read the pys60 documentation and API. you can find all functionalities you need.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.