![]() |
|
#1
|
|||
|
|||
|
I have a created a contact me page for my website and a form to go with it.
When someone click the submit button it opens up there email client for them to send it. How can I just have the submit button automatically send it without going away from my website? Thanks to anyone and everyone who helps ![]() Phil Johns |
|
#2
|
|||
|
|||
|
To make a form do anything at all, it has to run a program. In tha case of sending an email, that can either be their own default emial program, or a program written by you. PHP has its own built in email facilities, so you'd have to write a script in PHP to process the form contents, send you an email and acknowledge to the user that it had been sent. It would also need a bit of security to prevent spammers using it to blast spam around the world.
As you probably can't write your own php (as you wouldn't be asking this question, would you, here's a link to a free form processor thatis well respected in teh professional world http://green-beast.com/blog/?page_id=71 |
|
#3
|
|||
|
|||
|
Thanks Alot Dr John!!!!
|