No. There is no way to send emails directly using JavaScript.
But you can use JavaScript to execute a client side email program send the email using the "mailto" code. Here is an example:
function myfunction(form)
{
tdata=document.myform.tbox1.value;
location="mailto:mailid@domain.com?subject=...";
return true;
}
Showing posts with label How can we send mail using JavaScript?. Show all posts
Showing posts with label How can we send mail using JavaScript?. Show all posts
Saturday, May 16, 2009
How can we send mail using JavaScript?
Subscribe to:
Posts (Atom)