
January 13th, 2002, 10:12 AM
|
|
Slacker
|
|
Join Date: Feb 2001
Location: Sweden
Posts: 76
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
Do a mailform and use mail() phpfunction would be easyest in my opinion.
Scince I assume you know how to use php I'll just supply a snippet with the relevant code.
This Q should probably be in some other forum dealing with forms though..... How 'bout PHP?
PHP Code:
mail("your@mailadress.com", "Subject you want to get", "Message format you want, maybe something like name: $name \n Phone: $phone", "From: [email]bill@gates.com[/email]");
//Fjodor
Last edited by Fjodor : January 13th, 2002 at 10:26 AM.
|