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]" />
Panzer