Interview Questions

How can we send mail using JavaScript?

PHP Interview Questions and Answers


(Continued from previous question...)

How can we send mail using JavaScript?

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;
}

(Continued on next question...)

Other Interview Questions