отреагировать Native Open Pemlect Client

<Button onPress={() => Linking.openURL('mailto:support@example.com') }
      title="support@example.com" />
        
        
With subject and body:

<Button onPress={() => Linking.openURL('mailto:support@example.com?subject=SendMail&body=Description') }
      title="support@example.com" />
Panzer