|
Posted by wayne on 02/05/06 18:39
abixalmon wrote:
> PAGE: Form.html
>
> <form action="form_email.php">
> <input type="text" name="__GIVE THE NAME__">
>
> ---------- Create forms for Name, Address, Email, Subject and Contents
> -----------
>
> </form>
>
> ----------------------------------------------------------------------
>
> Page: form_email.php
>
> <?php
>
> $message="Hi,
>
> echo $_POST['message'];
>
> //echo all the form results here
>
> End of message
>
> ";
> $headers = "From: email@sender.com\n";
> $headers .= "Reply-To: $name <$email>\n\n";
> mail("to_email","Subject",$message,$headers);
>
> ?>
>
I've been using this one for a few weeks. Works welll for me.
http://www.tectite.com/
--
Wayne
http://www.glenmeadows.com
Navigation:
[Reply to this message]
|