How can I send an email using JavaScript?

I have made a contact page using HTML and CSS. Now how do I send an email back to the email address given, sending an automated reply? Or just in general, how do we send an email using JavaScript?

I personally do it with mailchimp. Take a look at their docs. You will need a bit more than Js but nothing you can’t learn in a very short amount of time :grin:

1 Like

Yeah, you can’t send an email directly from the browser. So you’d need to use a service that your frontend would make a request to (or make a backend server yourself).

1 Like

Ok thanks a lot! It is now clear, I will check Mailchimp out too!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.