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.
我有一个有 50 个用户的 php 论坛,我想知道如何在成员之间交换电子邮件而不透露他们真正的 gmail 电子邮件地址。论坛以这种方式工作。用户“A”打开一个联系表格并写信并发送电子邮件并发送它发给用户“B”。发送的电子邮件被用户“B”接收,但未显示用户“A”的真实电子邮件地址。当用户“B”回复时,用户“B”的电子邮件未附加在电子邮件中的任何位置。
他们现有的解决方案是这种事情。
看看PHPmail()函数。
mail()
$to = 'send_to@gmail.com'; $subject = 'Some message subject'; $message = 'Oi, what\'s up?'; $headers = "From: Bob < some_other_email@gmail.com>\r\n"; mail($to, $subject, $message, $headers);