I want to make simple web application using html and javascript for mailing system
but i need
how can we send mail using javascript?
what will be the answer of its?
can we send mail using JavaScript?
Ask by Dependra Pathak
Updated 29 Mar 2011
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; }