I’ve been looking around for a framework to simply allow me to send an email from inside my app. I have tried MailCore, Pantomime and SKPSMTP all with no luck. I can’t get them to compile in Xcode, so I presumed they were outdated. Is there any way I can do this? If so, how? Thanks.
Share
You can easily send emails from your iOS device. No need to implement SMTP and all. Best thing about using inbuilt emailing facilities in iOS is it gives you access to the address book! So it auto-completes names, email addresses. Yaaiiii!!
Include,
AddressBook,AddressBookUIandMessageUIframeworks and code something like this. Note you can even choose to send content as HTML too!For the sake of completeness, I have to write this selector to dismiss the email window if the user presses
cancelorsend–Happy coding…