In Android, I can launch an email client from my android application using its Intent mechanism. In ios, how can I launch its email client from my ios application using Swif
Update iOS 10+
//Use for Open mail application or open any link with browser!
let url = NSURL(string: "mailto:your_mail_here@mail.com")
if #available(iOS 10.0, *) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
} else {
// Fallback on earlier versions
UIApplication.shared.openURL(url)
}