I want to have a way that people can send me suggestions through the app via email (Without Database and php). I thought that i could have just a couple text field for the name,email adresse, subject and the message itself then code it in order to send those datas to my email but i can't find a way to do it... Is there an easy way to create a contact form? Is it possible even ?

有帮助吗?

解决方案

Keep it simple to begin with. If you want to send an e-mail, just use MFMailComposeViewController and add a subject and a little body txt (and the recipient obviously).

Later, you can add other interfaces, but, any kind of contact form would usually be implemented by calling to your server rather than sending an e-mail (i.e. to a php page on your server).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top