Hi, I want to send an email from the contact form directly from the React app. I am looking for a super simple solution like install lib and adding one component to the application. I want to send these messages straight from my browser.
I am currently using EmailJS for this, but I need to configure it, add a message template, and connect to my smtp email account, so it's not that simple at all.
Is there an easy way to do this?
Use tools like sender.net or useplunk.com
Those are pretty easy tools
Thanks i'll check these apps
This comment was deleted 4 years ago
You can use MailJS, and use sendgrid for transactional services. Easy + cheap !
Thanks for the answer. I will check your solutions.
I ended up using AWS SES and then rendering email templates with ReactDOMServer.renderToStaticMarkup. That way you keep the email template as React components.
Wow that's looks complicated. Thanks for your reply.
I've used https://www.emailjs.com in the past, it was pretty good.
Thanks for the answer. I also use emailjs but I wonder if this is the easiest choice? In EmailJS I have to create an account and add a template. I am thinking of a super simple solution - install the library and add the contact form component to my page in React.