0

Hello my name is Rajdeep singh. I want to ask that how to open the gmail inbox in react native with Linking.openURL command.

Please help me.

1 Answers1

1

Read this - How to launch and open email client React-native?

React Native Open Mail Function

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

React Native Open Mail Function With Subject and Body

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