Questions tagged [inbox]
236 questions
299
votes
13 answers
How can I read SMS messages from the device programmatically in Android?
I want to retrieve the SMS messages from the device and display them?
Hamaney
46
votes
7 answers
Get all messages from Whatsapp
I'm trying to implement an app that will show in a textview all the messages received from Whatsapp. Is there any way to do it? Is it possible to extract all the messages from Whatsapp?

user1141833
- 479
- 1
- 5
- 4
26
votes
15 answers
How to open the default mail inbox from android code?
I'm trying to link a button to the mail app. Not to send mail, but just to open the inbox.
Should I do this with Intent intent = new Intent(...)?
If so, what should be between the ( )?

Sander Swart
- 261
- 1
- 3
- 3
14
votes
6 answers
Extract (parse) amount and description from BIZ (Transaction) sms
I am doing below steps.
match sms with regex
if contains specified keyword then get values from sms body like amount,description (reason of transaction), Account number(if ATM withdraw),transaction type(debit/credit)
this regex not matching all…

Rax
- 1,347
- 3
- 20
- 27
12
votes
5 answers
What is the recommended way to build functionality similar to Stackoverflow's "Inbox"?
I have an asp.net-mvc website and people manage a list of projects. Based on some algorithm, I can tell if a project is out of date. When a user logs in, i want it to show the number of stale projects (similar to when i see a number of updates in…

leora
- 188,729
- 360
- 878
- 1,366
12
votes
3 answers
Interact with Akka actor outside actors
I want to interact with Akka actors from my own thread. Currently, i do like so:
val res = Await.result(aref ? GroupReceive(fromRank), timeout.duration).asInstanceOf[T]
But I am unsure how this actually interacts with my thread? I wish for the…

Felix
- 8,385
- 10
- 40
- 59
11
votes
1 answer
reading / parsing SMS from inbox WITH user permission IOS
I'm looking to access the SMS inbox from within an app. This is what I currently understand -
The standard SDK does NOT allow access to the sms db due to privacy reasons
iphone app reading sms
and How to programmatically send SMS on the…

madmax
- 111
- 1
- 1
- 3
9
votes
2 answers
Count number of emails in gmail using IMAP
Can anyone tell me how I can get the number of unread items in my inbox from gmail using imap or something else and display it in a label in C# WinForms?
I tried using atom feeds, but never could get it
Here is what I want to look like, if it…

Shane121
- 423
- 1
- 7
- 17
9
votes
1 answer
How to send to a "group contact" or distribution list using Google Inbox
After moving over to Inbox I am unable to send emails to groups/distribution lists I have set up in my Gmail contacts.
I must be missing something simple.. Can someone set me straight?

cbeaudin
- 667
- 7
- 19
8
votes
1 answer
MongoDB / Mongoose Schema for Threaded Messages (Efficiently)
I'm somewhat new to noSQL databases (I'm fairly good with relational databases though), and I'm wondering what the most efficient way to handle an inbox system with threaded messages would be.
Each 'message' will have a single sender and recipient. …

High Owl
- 103
- 1
- 7
8
votes
2 answers
How to convert date format from Android inbox sms
I used this code:
String[] columnDate = new String[] {"date"};
Cursor cursor1 = getContentResolver().query(Uri.parse("content://sms/inbox"),
columnDate ,null, null, "date desc limit 1");
cursor1.moveToPosition(0);
String msgData1Date =…

user1824542
- 225
- 1
- 4
- 15
7
votes
2 answers
Delete an sms from inbox
I would like to delete an SMS from the inbox once it is read by the user. How to do this?
Edit:
public class SmsReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method…

xyzandroid
- 139
- 1
- 3
- 9
7
votes
6 answers
Python Outlook: Read Inbox of additional mailbox
I'm using Outlook 2010 - and have my main mailbox: name@company.com
I have also added another mailbox to my profile: mb data proc
Both appear as top level folders within Outlook:
name@company.com
-Inbox
-Sent Items
-Deleted Items
mb data…

heycooldude
- 321
- 2
- 5
- 12
6
votes
1 answer
Facebook send dialog in iOS app
I have an iOs app in which I tell the user to share a link with the friends he wants. I want to offer him the possibility to open a new inbox from within the app and if possible with pre-filled content. But no pre-filled recipient. And I want it to…

Jules Marcilhacy
- 161
- 1
- 11
6
votes
2 answers
Get inbox messages from android device to show in custom listview
Possible Duplicate:
How can I read SMS messages from the inbox programmatically in Android?
I don't know how can i access the inbox of an android phone programmatically, can you please guide me or share some tutorial how can i do it(Access the…
user1451125