+ 2
I need html code for sending emails from webpage
HTML
2 odpowiedzi
+ 15
A formmail script is a server side script that gathers the data submitted in the form and mails it to a given email address.
There are many formmail scripts available.(See the page Form mail script selection guide for details)
The following section describes how to use a form mail script
Suppose the URL to the formmail script provided to you is http//someserver/cgi-bin/formmail.pl
give this URL in the action attribute of your form tag
<formaction="http://someserver/cgi-bin/formmail.pl"method="post">
.....your input elements.....
</form>
Now you can give whatever input elements you want within the form tags.
There are some information that you should provide to the CGI program (like the email address to which the form-data should be sent)
provide these data as hidden fields in the form
(using )
Insert the Submit button.
Over! you are ready with your form.
+ 2
You'd need a server side language for that e.g PHP or Ruby on Rails.