Reputation: 215
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
Reputation: 89
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