Is it possible to send emails using just javascript?
EDIT: [WARNING!] README:
It's a third party library that connects to an external server, take care with the information that you are sending.
Another solution on JS you can use a library named smtpjs
Add following library your html on header:
<script src="https://smtpjs.com/smtp.js"></script>
Use this without security:
Email.send("[email protected]",
"[email protected]",
"This is a subject",
"this is the body",
"smtp.yourisp.com",
"username",
"password");
Use this with security:
Email.send("[email protected]",
"[email protected]",
"This is a subject",
"this is the body",
{token: "63cb3a19-2684-44fa-b76f-debf422d8b00"});
It's actually possible and not all that difficult to build an SMTP client in Javascript.
But that SMTP client will still need to talk to an SMTP server for getting its emails delivered. And SMTP servers open to everyone are very rare nowadays (because they quickly become Spam conduits and then blocked and/or closed).
However, if the person using the client can supply an SMTP server and user credentials for it (just like with any other general purpose email client), then yes, you can send emails using just javascript.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With