Hi All,

Im trying to get my mail to display like the following

From: Paul "paul@paul.com"
Reply to Customer Services // with the email only showing when clicking reply

my current headers are set to

$headers .= "To: " . $dsv_to . " <" . $dsv_to . ">\r\n";
	$headers .= "From: " . $dsv_from . " <" . $dsv_from . ">\r\n";
	$headers .= "Reply-To: example <" . $dsv_from . ">\r\n";
	$headers .= "X-Sender-IP: " . $_SERVER['SERVER_ADDR'] . "\r\n";
	$headers .= 'Sent: '.date('n/d/Y g:i A')."\r\n";

I think that hiding that address is a feature of the mail client, and not something that can be controlled by headers.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.