1<Button onPress={() => Linking.openURL('mailto:support@example.com') }
2 title="support@example.com" />
3
4
5With subject and body:
6
7<Button onPress={() => Linking.openURL('mailto:support@example.com?subject=SendMail&body=Description') }
8 title="support@example.com" />