Questions tagged [inbox]
236 questions
1
vote
0 answers
Third party (almost instant) email notifications for chat messages from Facebook?
Is there a service that currently offers this (that isn't just the 'notification' settings on Facebook - as this is too delayed), OR, what would be the best way to attack this in terms of developing an online service that could provide these updates…

user3004233
- 11
- 2
1
vote
1 answer
JavaMail correct incoming
I'm receiving inbox via pop3 using JavaMail (1.5.0). One of the servers sends the wrong-formated content-type string. There is encoding added after boundaries. It looks like:
Content-Type: multipart/mixed;
…

Globber
- 575
- 3
- 14
1
vote
1 answer
Facebook FQL query to get user's sent messages since a timestamp
I'm not too familiar with Facebook FQL. I'm looking for a way to see what users have received my message. I know I need to ask for extended permissions read_mailbox
For instance I would like to see if my message "hello" has been sent after…

Peter Warbo
- 11,136
- 14
- 98
- 193
1
vote
0 answers
How to open mail client on iphone/android from browser (not compose window via mailto)
Using "mailto" opens the compose window of the default mail client from mobile safari/android chrome
How do I get just the default mail client of the user's iphone/android to open instead of the compose window.
I plan to send an email to the user…

Naren
- 99
- 9
1
vote
1 answer
how to count last date inbox sms in android
I am developing an app in which i want to count the last date total inbox SMS. i am using this code
TextView view = new TextView(this);
Uri uriSMSURI = Uri.parse("content://sms/inbox");
long now = System.currentTimeMillis();
long last24 = now -…

Ashfaque
- 1,254
- 1
- 22
- 38
1
vote
0 answers
Reading a message in inbox from a particular contact
I want to read sms from my inbox. Here i want to read a specific message. Suppose mark has sent me a message i just want to make a query which will return the cursor indicating only Mark message .i have tried something like this but it is not…

Developer
- 385
- 1
- 3
- 18
1
vote
0 answers
Showing message in my inbox
Having trouble in showing the inbox message in android. I have used two contentresolver in one activity . is it going to effect my program? Here is my code:
ContentResolver contentResolver = getContentResolver();
ContentResolver…

Developer
- 385
- 1
- 3
- 18
1
vote
0 answers
Whenever trying to get message from inbox field set fails
i am trying to view my inbox grouped by their sender numbers. For this first i find all the message from the inbox to their number and then when they click on a particular item he will see the conversation between them. But getting an error.
here is…

Developer
- 385
- 1
- 3
- 18
1
vote
1 answer
Searching of messages from inbox is not successful
I want to get the information about the messages from the inbox on the basis of a particular number.I am using following code for achieving the goal but it is not working in the expected way:
public void SendTheSmsToTheFolder(String…

user1726619
- 941
- 2
- 18
- 39
1
vote
1 answer
Getting Gmail messages via cURL using PHP
There's tons of info on logging in to Gmail and displaying the inbox and getting contacts etc, but I cannot figure out how to get the email itself into a variable so I can do stuff with it in PHP.
Here's what I have:
function inbox($username,…

I wrestled a bear once.
- 22,983
- 19
- 69
- 116
1
vote
1 answer
how to lock the message inbox with the app
I want to create an android application in which when the user presses message inbox, my app should invoke and ask for the password .how to start any idea

Vamsi Pavan Mahesh
- 240
- 1
- 8
- 30
1
vote
2 answers
Mail is not going directly into inbox
This is my code . When i send an email from an id to its same id then email goes to junk . Unable to identify that what is the problem in this code . For example i send an email like this
From = abc@yahoo.com
To = abc@yahoo.com
Then it goes…

Android Developer
- 65
- 1
- 7
1
vote
0 answers
Enable to retrieve inbox sms from android phone
ContentResolver cr = this.getContentResolver();
Cursor cursor = cr.query(Uri.parse("content://sms/inbox"), null, null,null, null);
cursor.moveToFirst();
if (cursor.getCount() > 0) {
for (int j = 0; j < cursor.getCount(); j++) {
String…

Nalini Wanjale
- 1,717
- 4
- 19
- 24
1
vote
2 answers
Gmail's inbox folder path?
I'm working on an iOS app that is supposed to read and send mails. For accessing inbox folder I've used the "INBOX". It worked well for Yahoo and AOL but not Gmail. Someone told me to try "[Gmail]" , "[Gmail]/All Mails", "Gmail/[All Mails]". I've…

Sikander
- 447
- 4
- 26
1
vote
1 answer
How change the default download location in PHP
my code:
$zip_name="download.zip";
$ctype="application/zip";
// required for IE, otherwise Content-disposition is ignored
if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression', 'Off');
header("Pragma: public"); //…

arul ananth
- 11
- 2
- 2