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

React Native Open URL

<Button onPress={() => Linking.openURL('https://www.google.co.in/') }
      title="www.google.co.in" />

##Don’t forget to import

import { Linking } from 'react-native'

Note: Not supported in iOS simulator, so you must test on a device.

Leave a Comment