Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
react-native-email
Advanced tools
Send a email using the Linking API
Install the package locally within you project folder with your package manager:
With npm
:
npm install react-native-email
With yarn
:
yarn add react-native-email
import React from 'react'
import { StyleSheet, Button, View } from 'react-native'
import email from 'react-native-email'
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Button title="Send Mail" onPress={this.handleEmail} />
</View>
)
}
handleEmail = () => {
const to = ['tiaan@email.com', 'foo@bar.com'] // string or array of email addresses
email(to, {
// Optional additional arguments
cc: ['bazzy@moo.com', 'doooo@daaa.com'], // string or array of email addresses
bcc: 'mee@mee.com', // string or array of email addresses
subject: 'Show how to use',
body: 'Some body right here'
checkCanOpen: false // Call Linking.canOpenURL prior to Linking.openURL
}).catch(console.error)
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center'
}
})
This results to:
When running on the iOS simulator, you will get a the URL is invalid
error. This will work on an actual device. The iOS simulator does not have access to the dialer app..
You will encounter a Provided URL can not be handled
error when attempting to use the function with the checkCanOpen
flag enabled.
Android SDK 30 introduced changes around how apps can query and interact with other apps. This means Linking.canOpenURL
returns false for all links unless a <queries>
element is added to AndroidManifest.xml
. Adding the following intent to android/app/src/main/AndroidManifest.xml
should resolve the issue:
<queries>
<intent>
<action android:name="android.intent.action.DIAL" />
</intent>
</queries>
For all configuration options, please see the API docs.
Got an idea for a new feature? Found a bug? Contributions are welcome! Please open up an issue or make a pull request.
FAQs
Send a email using the Linking API
The npm package react-native-email receives a total of 1,312 weekly downloads. As such, react-native-email popularity was classified as popular.
We found that react-native-email demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.