Php-我可以使用 Windows7 xampp 从我的家用计算机发送邮件吗?


Php-can i send mail from my home computer using windows7 xampp

我的家用电脑上有静态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 从我的家用计算机发送邮件?请回答

在这里看到你的答案 http://www.c-sharpcorner.com/UploadFile/c8aa13/send-mail-on-local-host-via-mercury-with-xampp/或者在这里 https://www.google.ru/search?q=use+mercury+to+send+email

相关文章: