Can I send email using javascript

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.


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"});

Yes. Using a Webservice. You can make an AJAX call to the service. EmailYak is one such service (It's in a private beta now).

EDIT: This is still a server side solution, as the actual email is sent from the server. You are just communicating with a server via AJAX and telling it to send the email.


Note that smtpjs uses a service located at http://smtpjs. It's not truly a Javascript SMTP client. This "utility" means you are uploading your email credentials to the server smtpjs.com. Use with extreme caution.