How can we send mail using JavaScript?
Ask by Anonymous User
Updated 21 Sep 2020
But you can use JavaScript to execute a client side email program send the email using the "mailto" code. Here is an example:
function functioname(form) { tdata=document.myform.tbox1.value; location="mailto:emailid@domain.com?subject=..."; return true; }