Ben bu php iletişim formu çözüm aslında çalışmak için çok basit olduğunu düşündürmektedir merak oturuyorum. Ya da, de o işi yapar, ama her zaman işe yarayacak mı?
Also, atm when you recieve the email, it says FROM: zsf34o6.mywebsite.com@web09.b-one.com which means that most mail clients will put it straight in the junkbox. How can I change it to the entered email address?
Teşekkürler!
<form method="POST" action="mailer.php">
<input type="text" name="name" size="19">
<input type="text" name="phone" size="19">
<input type="submit" value="Submit" name="submit">
</form>
<?php
if(isset($_POST['submit'])) {
$to = "you@you.com";
$subject = "From website";
$name_field = $_POST['name'];
$phone_field = $_POST['phone'];
$body = "From: $name_field\n E-Mail: $phone_field\n";
echo "Data has been submitted to $to!";
mail($to, $subject, $body);
} else {
echo "Error!";
}
?>