I have a reply to a ticket I submitted, I have no 'sender'?
Can someone clarify this? This is my latest test example:
Code:
$to = 'outsideemailaccount@anotherdomain.com';
$from = 'webmaster@example.com';
$subject = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n".
'Reply-To: webmaster@example.com'. "\r\n".
'Return-Path: webmaster@example.com' . "\r\n".
'X-Mailer: PHP/' . phpversion();
$message = "test123";
$rs = mail($to, $subject, $message, $headers, "-f ".$from);
thank you,
tom