How to Send Email Directly to React Native App

I'm progressing about a feature: send email to email directly from a native React app. I have searched the internet and tried the library: https://github.com/anarchicknight/react-native-communications , https://github.com/chirag04/react-native-mail . However, they only show me the view of the Gmail app installed on my device. I want a responsive native app to send directly to my email address. My device that I tested is running Android platform. thank you so much

+6


source to share


1 answer


You need a mail server or post services to send email, you cannot send email directly from the client side.

There are several of them on the Internet, you can try: MailGun or SendPulse , they have some good free tiers.



Your job is to simply call a simple POST method from your application to their API.

+7


source







All Articles