Hi there I am trying to send server less email through react native I have researched about it and came to know that it is possible to send in Reactjs using EMAILJS but in react-native I have not found any solution yet. Can anyone help in this scenario ? or guide me about any available library. Thanks in advance
Question posted in React native
The official React Native documentation can be found here.
The official React Native documentation can be found here.
3
Answers
EmailJS supports REST APIs. You can directly call them from your React Native app without any 3rd party library.
I was not receiving the email either, but make sure to check out Account/Security to make sure "Allow EmailJS API for non-browser applications" is checked. Also I included my private key per EmailJS’s recommendations.
Here is the initial code I got to work using axios:
I hope this helps.
A better solution is to open the default email client with prepopulated data from your application using https://github.com/chirag04/react-native-mail for example.