How to send an email from JavaScript
You can’t send an email directly with javascript. You can, however, open the user’s mail client: There are also some parameters to pre-fill the subject and the body: Another solution would be to do an ajax call to your server, so that the server sends the email. Be careful not to allow anyone to send … Read more