Trying to add mailto - react native

user2026178 picture user2026178 · Feb 7, 2017 · Viewed 21.1k times · Source

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:

Warning

warning

Code

<TouchableHighlight onPress={() => Linking.openURL('mailto:[email protected]?subject=abcdefg&body=body')}>
                      <Icon style={styles.icons} size={SIZE} name='envelope'/> 
    </TouchableHighlight>

Answer

ManojK picture ManojK · Sep 7, 2018

Use this code :-

Linking.openURL(`mailto:${props.ArticleData.email}`)