Skip to content

Instantly share code, notes, and snippets.

@dairdr
Last active May 4, 2017 20:58
Show Gist options
  • Save dairdr/2521f0a0c16cfe2a0d8438a1d557525d to your computer and use it in GitHub Desktop.
Save dairdr/2521f0a0c16cfe2a0d8438a1d557525d to your computer and use it in GitHub Desktop.
Open email app with default email address (swift 3)
// swift 3
let email = "[email protected]"
if let url = URL(string: "mailto:\(email)") {
UIApplication.shared.openURL(url)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment