Reputation: 4549
I want to send email in Swift internally while crashing or error generations. How can I send it internally, in Facebook they open the popup and sent the mail.
How do implement in Swift?
Upvotes: 2
Views: 202
Reputation: 6669
you can't send emails from iOS directly without the users interaction/permission (look over MFMailComposeViewController class). You can use an external services like SendGrid, Mandrill etc.
Upvotes: 4