1

如何使用 php 设置“返回路径”?

我试过的

        $subject = "title \"" . $row['title'] . "\"";
        $headers = "From: test <no_replay@test.com>\r\n";
        $headers .= "Return-Path: no_replay@test.com\r\n";
        $headers .= "MIME-Version: 1.0\r\n";
        $headers .= "Content-Type: text/html; charset=UTF-8\r\n";

        mail($email,$subject,$addletter,$headers);

从gmail来源我看到Return-Path: <apache@localhost.localdomain>

4

1 回答 1

4

对于 Windows Return-Path:应该可以。在 linux 上,您必须为此使用-f sendmail 选项。更多信息可以在这里找到http://php.net/manual/en/function.mail.php

mail($email,$subject,$addletter,$headers, "-fno_replay@test.com");
于 2013-06-18T12:09:41.773 回答