Questions tagged [inbox]
236 questions
5
votes
1 answer
Error: "Calls to mailbox_fql have exceeded the rate of 300 calls per 600 seconds"
I receive Graph API error #613 (message: "Calls to mailbox_fql have exceeded the rate of 300 calls per 600 seconds", type:OAuthException) when testing my app. It's a desktop app, and the only copy is the one running on my machine (so there's only…

Christopher Scott
- 91
- 8
5
votes
2 answers
URL to compose email in the new Inbox by Gmail
I'm a big fan of being one click (bookmarks bar link) away from composing a Gmail email. Now that things have moved over to Inbox by Gmail, the link no longer works.
I used to use this url https://mail.google.com/mail/u/0/#compose and I actually…

Alex Levine
- 1,489
- 15
- 16
5
votes
3 answers
start sms Activity @ ConversarionList.class from my own app
I've done my research and found plenty of people launching the sms application from an intent, The thing is that people usually tend to do this only for outgoing messages.
I'm currently displaying a Unread Sms Count on my app, but it seams I can't…

Lord Otori
- 349
- 1
- 4
- 17
5
votes
3 answers
PHP Delete inbox not working properly
I have an inbox code for deleting messages.
If i select one single message it deletes all of them.
How can i fix this ?
Here is my code for delete_message.php :
$inboxbtn = $_POST['deleteinbox'];
$outboxbtn =…

user3474238
- 69
- 9
5
votes
1 answer
How to get gmail inbox feed from a category
As specified here https://developers.google.com/google-apps/gmail/gmail_inbox_feed, I can get a feed of unread emails under a label 'work' by simply calling https://mail.google.com/mail/feed/atom/work/
How can we do the same thing with a category…
user3469397
5
votes
1 answer
How to read last 3 sms from inbox in Android?
I used this code
String msgData = "";
Cursor cursor = getContentResolver().query(Uri.parse("content://sms/inbox"), null, null, null, null);
cursor.moveToFirst();
do{
for(int idx=0;idx

user1824542
- 225
- 1
- 4
- 15
5
votes
1 answer
Android: Get all sent sms? (outbox)
I'm writing an app to backup all text messages. Been working on it for a while and i just realized the method i'm using to retrieve sms' only gets the ones i got (the inbox).
Is it possible, in any way, to get the outbox?
If it's not in the Android…

qwerty
- 5,166
- 17
- 56
- 77
5
votes
2 answers
Android: Send SMS and make it show up in the SMS inbox?
I finally got my app to be able to send text messages (SMS), but the problem now is that i need the messages to show up in the inbox if the user opens the sms app.
Is there any way to add text messages to the inbox?
I'm currently using the following…

qwerty
- 5,166
- 17
- 56
- 77
4
votes
2 answers
How to read inbox of Facebook pages using Graph API
Hi I'm developing management system for Facebook pages.
All Facebook pages are changed to sytle of timeline by the end of March, they will come to receive message from users.
So I want to add to read inbox of Facebook page, but I can't find how to…

Tomohide Ogawa
- 41
- 1
- 1
- 3
4
votes
2 answers
Parsing emails in outloook with C#
I'm writing a program to read all my outlook emails, eventually the search will be more specific but for now i want to read all the email in my inbox. i have code running that reads what i want up to 169 for some reason...
namespace…

stihl
- 241
- 2
- 6
- 16
4
votes
2 answers
Is there a more efficient way of displaying unread message number in page title?
Currently I use this...
setInterval(function() {
$.ajax({
url: 'data.php',
success: function(data) { document.title = data;},
dataType: 'text'
});
}, 15000);
But it seems to slow down the server due to the amount of…

Andy
- 153
- 8
4
votes
1 answer
How to handle media queries in HTML emails in Gmail?
I send responsive HTML emails with my website, with media queries, but in Gmail / Inbox, max-width in the media query refers to the browser viewport, instead of the HTML email.
So, on every other mail client, my emails switch to mobile display…

HeavyNounours
- 403
- 3
- 17
4
votes
2 answers
Gmail / Inbox : have our website icon show instead of the circled letter
I don't understand how some websites (LinkedIn, Youtube, Houzz, ...) have their favicon to show in Google Inbox. It is awesome! How come mine does not show? First I thought I had to put a favicon.ico in my public root folder... But I found out I…

Lideln Kyoku
- 952
- 9
- 20
4
votes
1 answer
Google Inbox cuts off anything after `=` in a mailto: body parameter
When opening a mailto: link from Android using Inbox, Inbox will cut out anything after a = in the body parameter. E.g. mailto:?subject=argh&body=whereitcutsoff=anythingafterisremoved becomes whereitcutsoff in the body of the email.
Anyone know of a…

jennz0r
- 1,533
- 2
- 15
- 26
4
votes
1 answer
How to implement table list like google inbox ios app?
the google inbox app has a feature when select a cell the table will expand and insert a sublist table view. the sublist can also has sublist.
How to implement this feature with tableview, collection view or custom view?

Bobo Shone
- 721
- 6
- 16