views:

26

answers:

1

Hi,

I am creating my second iPhone app, and I've included a feedback form using MFMailComposeViewController. This displays and works correctly, but I'm not sure I want all my users to see my email address. Is there any way to set the to: field to my email address, and then hide it so that the user doesn't see it?

Many thanks, Javawag

+1  A: 

This isn't practical. Even if you were to successfully hide the “To” field in the compose view controller (which would be difficult and probably get you rejected from the App Store), your users could easily see the email address they sent feedback to by checking their email account's sent-mail folder. IWasRobbed's idea—creating an email account specifically for your business or app—is probably the best solution.

Noah Witherspoon
That's a good point - I didn't think of the sent mail folders! I think I'll go with IWasRobbed's idea then - I can set up the new account to forward to my main account anyway, and have gmail put it under a separate label.
Javawag