Can I send email using jQuery only? I don't have .Net or PHP etc running on the site.
Asked
Active
Viewed 2,347 times
2
-
Do you have another site that could send email for you? – zaf Apr 09 '10 at 08:40
-
Releted: http://stackoverflow.com/questions/7592/can-i-use-javascript-to-create-a-client-side-email – Shay Erlichmen Apr 09 '10 at 08:42
-
possible duplicate of http://stackoverflow.com/questions/1415205/how-to-send-email-by-using-javascript-or-jquery – Jørn Schou-Rode Apr 09 '10 at 08:44
1 Answers
10
You can not send email with Jquery. You will have to use sever-side language such as php
, asp.net
etc. Since you don't have these already installed, you will have to install them to be able to actually send emails. Also, even if you have these installed, you will still need an email sending mechanism, for example email settings at your host where you upload your site.
-
Well, if you run e-mail server on port 80 technically you can :) – Egor Pavlikhin Apr 09 '10 at 09:02
-