-1

我的家用电脑上有静态IP。我正在使用带有 xampp 的 windows-7 。我创建了发送邮件的代码

<?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.";
?>

但是目的地没有收到先生的邮件。我认为可以使用 windows7 xampp 从我的家用计算机发送邮件吗?请回答

4

1 回答 1