Okay this is what i have my server i run my website off of has auto responders and i made one. im using a flash mail form for a newsletter and they put their name and e-mail address. My php file i have is like this
<HTML>
<HEAD>
<TITLE>Form Mailer</TITLE>
<BODY>
<?php
$TextVariable = '&results=';
$response = 'Data Sent. Thank You..';
echo $TextVariable;
echo $response;
mail ("newsletter@killbuzz.com", "Form Response", "
Form Response:
name: $name
email: $email
Sent From : $REMOTE_ADDR
"
?>
</body>
</html>
What i need is to know the command i can use to make the e-mail they put in the box to e-mail the newsletter that has the auto responder as in They put there e-mail in the box and hit submit the sumbmit is attached to the php file on my website and i need it to use their e-mail that they put to e-mail the auto responder so they get a e-mail back and i get their name and e-mail aswell sent to me..
Hope i explained this good, sorry if i didnt its late.
thanks killbuzz
<HTML>
<HEAD>
<TITLE>Form Mailer</TITLE>
<BODY>
<?php
$TextVariable = '&results=';
$response = 'Data Sent. Thank You..';
echo $TextVariable;
echo $response;
mail ("newsletter@killbuzz.com", "Form Response", "
Form Response:
name: $name
email: $email
Sent From : $REMOTE_ADDR
"
?>
</body>
</html>
What i need is to know the command i can use to make the e-mail they put in the box to e-mail the newsletter that has the auto responder as in They put there e-mail in the box and hit submit the sumbmit is attached to the php file on my website and i need it to use their e-mail that they put to e-mail the auto responder so they get a e-mail back and i get their name and e-mail aswell sent to me..
Hope i explained this good, sorry if i didnt its late.
thanks killbuzz