Hi there. I just arrived and I am absolutely new in PHP... I use your Contact Form free download which is by the way great and easy to use, (many many thanks for sharing ). I uploaded it to server and it works like a charm EXEPTED : I can not change the email from variable in order to get it right.... I received a test email sent from me and the variable $EmailFrom is of course not customize :? . How can I get it correctly filled up ? Thank you for your help Pls find under php code sample :
<?php
// CHANGE THE VARIABLES BELOW
[b]$EmailFrom = \"junk@junk.com\";[color=#FF0000]//HERE MY IGNORANCE COMES AT ITS BEST[/color] $EmailTo = \"myemail@mydomain.com\"; $Subject = \"A message for you\";
Hi to you 2. Sorry for my late reply. First to davesgonebananas : so with
$EmailFrom = \"myownemail@mydomain.com\";
I will get the adress of the person who sent me a message ? I am sure I am missing something, considering that I input already my own email adress in the variable :
Well yes, I get it better. :D my user has actually an input field for his email, the contact form is taken from this CSSTRICKS http://css-tricks.com/examples/ContactForm/ I am gonna give it a try ... Thank you !
think about your form first, this is where you are going to gather the information.
in the script you really want to get the users email & post the contents of the form to someone else.....
e.g.
$to = "abc@abc.com"; this is going to the preson who needs the info $from = $_REQUEST['email']; //this is from the person filling in the form
later on, in same script, you can email yourself with the contents, and also send an email back to the person who filled in the form with a thank you email.
I use your Contact Form free download which is by the way great and easy to use, (many many thanks for sharing ).
I uploaded it to server and it works like a charm EXEPTED : I can not change the email from variable in order to get it right....
I received a test email sent from me and the variable $EmailFrom is of course not customize :? . How can I get it correctly filled up ?
Thank you for your help
Pls find under php code sample :
Obviously you put your email address instead of example@gmail.com
Hope this is what you were looking for.
Dave
$EmailFrom = $_REQUEST['email']; //where email was the form element name="email"
Sorry for my late reply.
First to davesgonebananas :
so with
Am I right? Or totally wrong :?
thank you,
and then to ikthius :
By just inputing :
I am done, or I need more modif ?
I am so beginner in this...
Thank you for any further help,
when you submit the form it should be sent to your php file handling the contact script.........
so when the script is running, it takes the value of the input feild called [b]email and assigns it to a variable called
$EmailFrom
does this make more sense?
my user has actually an input field for his email, the contact form is taken from this CSSTRICKS http://css-tricks.com/examples/ContactForm/
I am gonna give it a try ...
Thank you !
in the script you really want to get the users email & post the contents of the form to someone else.....
e.g.
$to = "abc@abc.com"; this is going to the preson who needs the info
$from = $_REQUEST['email']; //this is from the person filling in the form
later on, in same script, you can email yourself with the contents, and also send an email back to the person who filled in the form with a thank you email.