Mailto appears to not be working. All that happens is that the icon appears to be pressed, but no action occurs. Shoots out this warning:
<TouchableHighlight onPress={() => Linking.openURL('mailto:[email protected]?subject=abcdefg&body=body')}>
<Icon style={styles.icons} size={SIZE} name='envelope'/>
</TouchableHighlight>
Link not work on Simulator.
React native linking mail api support subject, body?
Apple URL Scheme Reference
Use this code :-
Linking.openURL(`mailto:${props.ArticleData.email}`)
This solution wast tested on an android emulator with a GoogleApi system image:
After you have the emulator configured you can use something like you are using:
<TouchableHighlight onPress={() => Linking.openURL('mailto:[email protected]?subject=abcdefg&body=body')}>
<Text>email1</Text>
</TouchableHighlight>
or
You can use a package like https://www.npmjs.com/package/react-native-autolink
<AutoLink
text="email2 (mailto:[email protected])"
/>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With