Swift:
if let url = URL(string: "mailto://
[email protected]") {
    if UIApplication.shared.canOpenURL(url) {
        UIApplication.shared.openURL(url)
    } else {
        print("Cannot open URL")
    }
}
Objective-C:
NSURL *url = [NSURL URLWithString:@"mailto://az...