LINKING to email inbox in react native code example
Example: react native open email client
<Button onPress={() => Linking.openURL('mailto:[email protected]') }
title="[email protected]" />
With subject and body:
<Button onPress={() => Linking.openURL('mailto:[email protected]?subject=SendMail&body=Description') }
title="[email protected]" />