你好,
我有我的办公室前景,这样我就可以向任何人的身份证发送邮件。问题是我正在研究 php sciprt 并使用邮件功能发送邮件。我已经在我的台式电脑上安装了 WAMP 来运行 php 脚本。我想检查 php 邮件功能,但我不知道如何使用我的本地 WAMP 服务器配置我的办公室前景。这是我用于在 php 脚本中发送邮件的以下代码。请给我解决方案:
<?php
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>