Can I send email using javascript

dotty picture dotty · Dec 15, 2010 · Viewed 41.8k times · Source

Is it possible to send emails using just javascript?

Answer

Adam picture Adam · Dec 15, 2010

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.