tags:

views:

61

answers:

2

How to send email using javascript.

+4  A: 

Can't be done. Sending e-mail only works on the server side. If all you're doing is sending e-mail, a quick PHP script would likely do the trick.

Matchu
A: 

No.. i don't want to use email client, because if i use mailto it will open email client.

Sanjay
@Sanjay..then for your kind info...javascript is used only at clientside..for email implementation you need to write server-side script using PHP, ASP, etc.
PM - Paresh Mayani