Answers
Oct 02, 2008 - 05:13 AM
When I created a form on my page to do the same thing, I needed to put a simple PHP page together to actually send the email out. I had no programming experience, but some simple resources online allowed me to do a bit of cut and paste and figure it out.
Not sure if you can accomplish it without, but I did find this article that may help you out:
http://email.about.com/cs/usingemail/...
Oct 02, 2008 - 05:15 AM
If that doesn't work, perhaps somebody else can help you out.
Oct 02, 2008 - 07:36 AM
for example this site has one
http://www.sougeyskichalet.com/contac...
and would like a very basic version of this.
hope that helps a bit more...
mike.
Oct 02, 2008 - 09:08 AM
From what I know, you need to have a page that executes a serverside language like .Net, PHP, ASP, etc. Basically, your form references the server side page and then that will actually send the email.
I found a code that is available in order to accomplish this from what I can see that you can download....you will need to put the site on a Linux server though that supports PHP.
http://www.veign.com/code-view.php?ty...
If you are a beginner...this may take a bit of time to figure out but you CAN do it. If anyone else wants to contribute....feel free.
Oct 02, 2008 - 11:39 AM
It is possible to accomplish without you yourself having to do any serverside programming.
Some hosting providers provide a standard formmail.cgi script, which basically is a component already made that will handle a form you submit to it and send the information out as an email.
I would ask your own hosting provider if they have a script like that available, and if they do, they probably also have the documentation to use it.
It is very easy to set up.
Hope this helps you...
Oct 05, 2008 - 11:52 AM
Oct 08, 2008 - 07:09 AM
cheers for all the help!
Oct 08, 2008 - 07:19 AM
I recommend that you write an "Answer Summary" to explain the resource and the steps you took so future visitors will be able to use it as well, only if you want to share the knowledge:)
Oct 08, 2008 - 10:47 AM
first off you need to go to your hosting company and set up CGI scripting. use PHP test mailer upload and set up the email address you want the form to go to. this should be easily done at your domain control panel.
now you need to go here and download the form itself.
http://www.veign.com/code-view.php?ty...
now open sample-form-email.php in your HTML editor and email-thankyou.php
go to code view in thankyou.php. here's where you need to make the changes. the following top area of the code will be shown as this...
// Code initilization
$to_email = 'YourName
$email_subject = '[Website Form] Testing an email form';
$err_message = FALSE;
// Path to the upload folder - incorrect path will cause a 'Move File Error'
$UPLOAD_DIR = "uploads/";
change the 'YourName
save thankyou.php in the same directory as sample-form-email.php. You can manipulate the layout and style of form as you wish.
now upload both files to your site and test it. the form should send all the details to the specified address. this is working for me so hope it does for you!
Oct 08, 2008 - 10:50 AM
class-upload.php
validate.js
style.ccs
Dec 06, 2012 - 08:43 PM
Source: http://www.makeanysite.in
Add New Comment