Deecay
Deecay

Reputation: 71

Access iPhone Mail inbox using native app. Possible?

I was asked to write a native iPhone to provide a filtered view of items in the Mail InBox. For instance, I may want to list out only the emails with text "Mac Tablet Gossip" inside the mail content. However, I don't need (or want) to access the inbox of the mail account, but instead I hope that I can just access the inbox on the device. Is it doable using the framework provided by Apple?

Upvotes: 1

Views: 1211

Answers (2)

stereoscott
stereoscott

Reputation: 13446

Down the road apple will probably not provide API access to email directly, but they may open up a device-wide search API using Core Data or something similar. The only solution I can come up with to your problem would be if somehow you had an RSS feed of your inbox, which you could then easily import and parse in your custom app and search it to return the relevant mail items.

Upvotes: 2

pgb
pgb

Reputation: 25001

There currently is no API to access the device inbox.

Upvotes: 1

Related Questions