Answers for "react native open email client expo"

1

react native open email client expo

<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" />
Posted by: Guest on April-30-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language