vote up 1 vote down star
2

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...

flag

75% accept rate
btw, is there any reason to not allowed to use server-side? – silent Aug 23 at 20:21
Unfortunately, I'm currently unable to afford premium hosting. While I'm aware that there are 4 or $5 ones around - it's not a luxury I can have right now. – baeltazor Aug 24 at 1:05

5 Answers

vote up 1 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 3 vote down

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)

link|flag
Thank you silent. I am now looking into the Google AppEngine. – baeltazor Aug 24 at 1:06
vote up 1 vote down

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

link|flag
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 Aug 23 at 20:17
vote up 1 vote down

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.

link|flag
Thank you lakario, I will look into javascript api's :) – baeltazor Aug 23 at 20:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.