我无法通过邮件功能接收邮件

时间:2016-03-30 08:11:22

标签: email

它在localhost上运行吗?我正在使用 xampp 。我无法在Gmail上收到任何邮件。我需要使用PHP邮件程序吗?

<?php
         if(isset($_POST['submit'])){
            $msg = 'Name: ' .$_POST['Fname'] ."\n"
           .'Email: '.$_POST['email'] ."\n"
           .'Comment: '.$_POST['comment'] ;

           mail('graceprince@gmail.com', 'sample contact us Form', $msg);
           header('location: index.php');

         }else {
            header('location:contact.php');
            exit(0);
        }
?> 

0 个答案:

没有答案