views:

403

answers:

3

So I have an Application that involves sending emails through an API. What I would like is that to have the same or similar to compose email interface available on the phone already.

Unfortunately in all apples Goodness there is no view that just does that.

[AppleComposeMailViewController alloc];

Would do the trick nicely.

So I have started down the strategy of using a UItableViewController. I have had sucess until i try and Add a dynamically expanding cell on the end for Content.

Should I keep down this path or try implementing from the UIScrollView Base?

If the Table view is the way to go how would i go about getting a TextView into the Last cell that expands as a user types.

IF I go UIScrollView, what are some strategies i can use to make implementing the top table like views easier.

+2  A: 

check out the great 'e-mail' composer in the Three20 framework (screenshot)

MiRAGe
+4  A: 

In App Email is available in iPhone OS 3.0 and should do just what you describe. Check out MessageUI.

denton
Any more details? a link or directions to find docs in the SDK?
Michael Pryor
iPhone OS 3.0 is in beta at the moment. If you are a registered developer($99) you can find the SDK at developer.apple.com/iphone. The documentation comes with the SDK.
Jab
The class you want is MFMailComposeViewController.
denton
This would work great except it appears that the email needs to be queued into the Mail App. I want to actually send via an API any ideas?
Bluephlame
+1  A: 

Check this tut... http://blog.mugunthkumar.com/coding/iphone-tutorial-in-app-email/

Mugunth Kumar