Contents
- 1 React Native Communication
- 2 Types of Different Activity
- 3 To Import React Native Communication
- 4 Make Phone Call using
- 5 Send Email using
- 6 Send SMS using
- 7 Open a web URL using
- 8 To Make a React Native App
- 9 Installation of Dependency
- 10 Code for Phone Call, SMS, Email
- 11 To Run the React Native App
- 12 Output Screenshots
React Native Communication
This is an Example to Make Phone Call, Send SMS or Email Using React Native Communication. We will use the Communications Component provided by react-native-communications. This is a very easy to integrate library which can be used for a very useful task like Making phone calls, Sending Text SMS or for Sending Emails.
The most important point to note here is that all the things will trigger the respective applications to handle the task like when we call a function to make a phone call it will open a Dialer application with a prefilled number supplied by us from our App. Similar to the SMS and mail.
Types of Different Activity
In this example, we will see 4 types of different activity:
- Make a Phone Call.
- Send SMS.
- Send Email.
- Open a web URL in the browser.
You can also visit Example to Send Text SMS on Button Click in React Native using react-native-sms
and Example to Make a Phone Call in React Native App using react-native-phone-call
.
Now let’s get started with the example.
To Import React Native Communication
1. Either import the whole module and call
import Communications from 'react-native-communications';
// Communications.phonecall('0123456789', true)
2. Or import single methods and call
import { web, phonecall } from 'react-native-communications';
// phonecall('0123456789', true)
Here are the code snippets to perform above-mentioned activities:
Make Phone Call using
Communications.phonecall(phoneNumber, prompt)
Send Email using
Communications.email(To, CC, BCC, Subject, Body)
Send SMS using
Communications.text(phoneNumber = null, body = null)
Open a web URL using
Communications.web(address = null)
For this example, we will make a home screen with 4 different buttons to make a call, to Send SMS, to Send Email and to open a URL in browsers.
To Make a React Native App
Getting started with React Native will help you to know more about the way you can make a React Native project. We are going to use react-native init to make our React Native App. Assuming that you have node installed, you can use npm to install the react-native-cli
command line utility. Open the terminal and go to the workspace and run
npm install -g react-native-cli
Run the following commands to create a new React Native project
react-native init ProjectName
If you want to start a new project with a specific React Native version, you can use the --version argument:
react-native init ProjectName --version X.XX.X
react-native init ProjectName --version react-native@next
This will make a project structure with an index file named App.js in your project directory.
Installation of Dependency
To use Communication
we need to install react-native-communications
dependency.
To install this open the terminal and jump into your project using
cd ProjectName
Run the following command to install
npm install react-native-communications --save
This command will copy all the dependency into your node_module directory.
–save is optional, it is just to update the react-native-communications dependency in your package.json file.
Code for Phone Call, SMS, Email
Now Open App.js in any code editor and replace the code with the following code
App.js
// Make Phone Call, Send SMS or Email Using React Native Communication
// https://aboutreact.com/make-phone-call-send-sms-or-email-using-react-native-communication/
// import React in our code
import React from 'react';
// import all the components we are going to use
import {
SafeAreaView,
StyleSheet,
View,
Text,
TouchableOpacity,
} from 'react-native';
// 1. Either import the whole module
import Communications from 'react-native-communications';
/* 2. Or import single methods
import {
phonecall,
email,
text,
web
} from 'react-native-communications';*/
const App = () => {
return (
<SafeAreaView style={styles.container}>
<View style={styles.container}>
<Text style={styles.titleText}>
Make Phone Call, Send SMS or Email
Using React Native Communication
</Text>
{/* Call: phonecall(phoneNumber, prompt) */}
<TouchableOpacity
activeOpacity={0.7}
style={styles.buttonStyle}
onPress={
() => Communications.phonecall('0123456789',true)
}>
<Text style={styles.buttonTextStyle}>
Make Phone Call
</Text>
</TouchableOpacity>
{/* Mail: email(to, cc, bcc, subject, body) */}
<TouchableOpacity
activeOpacity={0.7}
style={styles.buttonStyle}
onPress={() =>
Communications.email(
[
'aboutreact11@gmail.com',
'hello@aboutreact.com'
],
null,
null,
'Demo Subject',
'Demo Content for the mail',
)
}>
<Text style={styles.buttonTextStyle}>
Send an Email
</Text>
</TouchableOpacity>
{/* SMS: text(phoneNumber = null, body = null) */}
<TouchableOpacity
activeOpacity={0.7}
style={styles.buttonStyle}
onPress={() =>
Communications.text(
'0123456789',
'Follow https://aboutreact.com'
)
}>
<Text style={styles.buttonTextStyle}>
Send a Text/iMessage
</Text>
</TouchableOpacity>
{/* Web: web(address = null)*/}
<TouchableOpacity
activeOpacity={0.7}
style={styles.buttonStyle}
onPress={
() => Communications.web('https://aboutreact.com')
}>
<Text style={styles.buttonTextStyle}>
Open AboutReact
</Text>
</TouchableOpacity>
</View>
</SafeAreaView>
);
};
export default App;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'white',
padding: 10,
},
titleText: {
fontSize: 22,
textAlign: 'center',
fontWeight: 'bold',
},
buttonStyle: {
justifyContent: 'center',
marginTop: 15,
padding: 10,
backgroundColor: '#8ad24e',
},
buttonTextStyle: {
color: '#fff',
textAlign: 'center',
},
});
To Run the React Native App
Open the terminal again and jump into your project using.
cd ProjectName
To run the project on an Android Virtual Device or on real debugging device
react-native run-android
or on the iOS Simulator by running (macOS only)
react-native run-ios
FAQ: How perform the actions directly from my react native application without opening the default app?
Ans: Sorry but this is not possible with this library. This is a cross platform solution which does not provide the same, you need to manage some native logic to do that.
For the phone call related you can see react-native-immediate-phone-call, with that library no additional user input is required for Android and the call starts instantly (Apple always asks confirmation since the last iOS updates…)
Output Screenshots
Android
IOS
This is how you can Make Phone Call, Send SMS or Email Using React Native Communication. If you have any doubts or you want to share something about the topic you can comment below or contact us here. There will be more posts coming soon. Stay tuned!
Hope you liked it. 🙂
how to send direct SMS from backend.
using react native.
Hello Avishkar,
There is not any direct way to send the SMS directly. You can either execute the function which will open the default SMS app of the user with composed message to send or you can use any webservice(which will call a SMS API to send the message) or can also call the SMS API directly from the phone like normal web API call.
If you want to use the SMS API then you have to buy it from any of the SMS provider.
What about sending e-mail directly from the app? It’s not possiblo too?
No, you can not as these things are very risky and needs permission from the user. You can use a server which can send the mail and can fire a web service in the background to trigger the mailer.
can you explain clearly about how to send direct email from backend
yes you can send the emails directly from the backend this is an addon feature for those who have no server and wants feedback for the ap so they can open the device email client with prefilled details and can receive the feedbacks without the server.
You are really amazing brotrher i love your explanation..May God give u more skills
Hello Sir.
I ask if with this package, the user of the application can access his directory of telephone contacts ???
With an application based on “react-native-communications”, we have the possibility of accessing the telephone contact directory to communicate with our contacts available in the list of contacts already registered in our telephone directory exactly as the WhatsApp allows us to access our contact list ???
Please let me know.
This library won’t help you completely. You need to use https://www.npmjs.com/package/react-native-contacts library to access the contact.
Hi,can you please suggest anyplace where we can do in-app voice call
For In-App voice call you need to use any third party like Agora or Twillio.