回覆和返迴路徑可以放置在標題中,如下所示-
$headers = 'From: sample@example.com' . "\r</p><p>" . 'Reply-To: sample@example.com' . "\r</p><p>" . 'Return-Path: sample@example.com'
否則,可以將其作為第五個參數傳遞以更改返迴路徑-
mail($to, $subject, $message, $headers, "-f email@wherever.com");
此處,「email@wherever.com」必須替換為使用者各自的電子郵件ID。
以上是在PHP郵件函數中更改Return-Path的詳細內容。更多資訊請關注PHP中文網其他相關文章!