tags:

views:

302

answers:

5

I'm trying to send a simple email from my website using a HTML form. I am not allowed to use any server-side scripting. I'm wondering if it's possible to send a simple message from a HTML form using maybe Jscript or Javascript or DHTML or VBscript or something else? Thanks all :)

P.S. It can't be mailto: either. I'm not expecting a miracle, but one would surely be appreciated right about now...

+1  A: 

To my knowledge this is not possible. VBScript is still server side scripting. There may be API's you can hit with JavaScrpt to achieve what you want, but I do not know of any.

Take a look at this for more information about why a server side handler is necessary.

Nathan Taylor
Thank you lakario, I will look into javascript api's :)
baeltazor
VBScript can also be used client-side, but, alas, only in IE.
Heinzi
So what I think you are saying @Nathan is that it may be possible in VBScript? I was not aware that vbscript was a server-side language however, i am able to use vbscript :) i'll look into that more now
baeltazor
+1  A: 

Without a server side language or mailto: I don't think this can be accomplished.

Mike Buckbee
It seems to be that way... I thought I'd check on here, just to be sure. I can't wait until computers can be controlled with our minds.
baeltazor
+3  A: 

Well, this one does include server side scripting, but you don't have to pay.

You can use google appengine and code some simple mail submitter using both java/python (which GAE supported)

silent
Thank you silent. I am now looking into the Google AppEngine.
baeltazor
+2  A: 

Well in theory, you can use cross site XHR like techniques, tag inclusions etc, but you will need another server supporting server side scripting, you can use a simple free service, for instance GAE as silent stated for this. You will also need security, you can use a capcha service which is free also. But in reality, it does not worth it.

M. Utku ALTINKAYA
+1  A: 

There are email servives you can use that would integrate with your website such as http://www.emailmeform.com/. This one is free to use. they generate the code for you to include on your web page. I have not used them, so can not say what their service is like, but they do appear to meet your requirements.

There is also http://wufoo.com if you are looking at some kind of contact form.

Daisy Moon