abc
abc

Reputation: 215

How to send Email using Javascript?

Anyone who has Javascript code for sending email? I have never done this so I need a guide, code I can look at and study how it works.

Upvotes: 0

Views: 77

Answers (1)

No. Its not possible to send an email with Javascript. JS is a client side technology. you will need something on server side technology.

If you are asking for NodeJs, you can try below:

https://github.com/andris9/Nodemailer

Upvotes: 2

Related Questions