Answers for "react native open gmail app"

1

react native open email client

<Button onPress={() => Linking.openURL('mailto:[email protected]') }
      title="[email protected]" />
        
        
With subject and body:

<Button onPress={() => Linking.openURL('mailto:[email protected]?subject=SendMail&body=Description') }
      title="[email protected]" />
Posted by: Guest on April-30-2020
0

react native open gmail app

openMailApp() {
    if (Platform.OS === 'android') {
      NativeModules.UIMailLauncher.launchMailApp(); // UIMailLauncher is the 
      return;
    }
    Linking.openURL('message:0'); // iOS
    return;
  }
Posted by: Guest on May-07-2021

Code answers related to "react native open gmail app"

Code answers related to "Javascript"

Browse Popular Code Answers by Language