Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个客户要求,客户需要向网站管理员发送(和回复)电子邮件,但不应共享电子邮件地址。
PHP mail() 有没有办法隐藏发送给接收者的电子邮件地址,但接收者仍然应该能够回复发件人。
我在几个网站上看到过。他们是怎么做到的呢?
还有一个问题,我的 Magento 网站加载 OPC 页面非常缓慢,有什么解决办法吗?
你指的是:
$headers = "From: no-reply@domain.com\r\n"; $headers .= "Reply-To: validemail@domain.com\r\n";
因此,当该人收到电子邮件时,他们会从“无回复”中看到它,但如果他们决定回复,则会转到 validemail@domain.com