how to send email directly in React Native App

You need an email server or an email services to send an email, there is no way you can send an email directly from the client side.

There are several of them in the internet, you can try: MailGun or SendPulse, they got some good free tiers.

Your job is just calling a simple POST method from your app to their APIs.


I have tried, and so far succeeded in testing with iOS, with react-native-email ("npm install react-native-email").

There is a bit of fluffing around when sending the first email as you have to "login" to your email account. But otherwise, test emails are going through fine.

Also, SendPulse is a bulk newsletter service, not for individual emails.

One annoying caveat: it won't work in your emulator. It will return a URL error when you click the send button. But it works fine on a real device. I'm using Expo (and who wouldn't) and it works fine on my iPhone.

Complete code for testing purposes here: https://github.com/tiaanduplessis/react-native-email