Hi, again! It would be nice to be able to mark an sms as read. We can delete it, but it's not always appreciated. Thanks ;)
It is possible, even it's not documented in API Reference:
import inbox, appuifw inb = inbox.Inbox() smsid = inb.sms_messages() for i in smsid: print i inb.set_unread(i,0)
This is quick example... So, this is possible
Log in to post a comment.
It is possible, even it's not documented in API Reference:
import inbox, appuifw
inb = inbox.Inbox()
smsid = inb.sms_messages()
for i in smsid:
print i
inb.set_unread(i,0)
This is quick example...
So, this is possible