up vote 0 down vote favorite
share [g+] share [fb]

I need a way to transfer a bunch of information (1-10kb) from an email in the Mail application to my iPhone app.

I was thinking I could craft a custom URL in the body of the email that, when clicked, would transfer the information through a custom URL handler to my app.

However, it's a lot of data. Can I pass that much data in the custom URL handler? e.g. myapp://load?var1=[lotsofdata]&var2=[lotsofdata]

Or, is there some better way I can transfer info from the Mail app to my app?

link|improve this question

feedback

7 Answers

up vote 2 down vote accepted

I don't know what the maximum length is, but I do know that you can have very long data-urls in Safari, which let you store image or other file data in the url itself. If the limits are similar, then you are in luck.

link|improve this answer
feedback

What happens when you try it? :-)

link|improve this answer
feedback

The usual limit for a GET should not be longer than 2083 characters to be on the safe side. But also it should be a method to read the email directly from your own app, but I'm not very familiar with this solution.

link|improve this answer
feedback

Did you try this? I'm curious how it turned out.

link|improve this answer
feedback

Instead of a link in the email, you could probably just create a form that posts the information instead of sending a get request to your site; that would get around your length limitation (if there is one)

link|improve this answer
feedback

That last answer assumes you have a site to put the data on. If you're trying to keep things purely in email it would be nice to stick the data in the mail message. You can embed images in an email anyway, so why not?

link|improve this answer
A form in the email; not a web page – John Apr 22 '09 at 20:50
feedback

Doing some research, I came across two blog posts that claim to have created large URLs that have worked, although one is using the data: URL scheme and the other is using mailto: .

Your best bet is to probably just try it out: Create a link using myapp:// with a large amount of data, stick it in an email and see if your app reads the entire thing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.