views:

110

answers:

1

Say I want to send email to my server, but I want the user to not see my address, or perhaps I want the subject to be preset. What if I want to email the value of a UISlider or other UI element without the user seeing the whole email view. How can I do that?

Must I use an Apple class, or can I use my own UITextFields?

A: 

The benefit of the Apple class is that you get the email address of the user. If you do not care about that, you can submit anything you want to your own server as POST data or by whatever means you wish. The interface can look like mail but the functionality will be like a web form.

If you need the address of the user and do not want to ask for it, then you will have to reveal the destination email address. You can specify a subject and body, but the user will be able to modify it.

drawnonward