showing results for - "react native open email client"
Micheal
15 May 2017
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" />