Hi, this is a part of my code for an e-mail script.. I want to add a reply-to-address for the recipient.. How do I do that?
<?php
$to = $_POST['to'];
$email = $_POST['email'];
$name = $_POST['name'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$headers = "From: $name <$from>";


