I have used the flash php email from tutorial but i have a treat.
I need to make a form with more information (like phone, adress and job)and don’t know how to send this information by the php.
I’m only starting to learn php so has someone got an answer for this?
Thanks in advance
Here’s the php script:
<?php
$sendTo = “gbussinger@ig.com.br”;
$subject = “Mail form”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];
mail($sendTo, $subject, $message, $headers);
?>