转一个PHP邮件发送的测试代码。 原创 qtwrk 2018-08-18 11:37 阅读 358 次 评论 0 条 <?php ini_set( 'display_errors', 1 ); error_reporting( E_ALL ); $from = "发件人地址"; $to = "收件人地址"; $subject = "PHP Mail Test script"; $message = "This is a test to check the PHP Mail functionality"; $headers = "From:" . $from; mail($to,$subject,$message, $headers); echo "Test email sent"; ?> 测试效果: 本文地址:https://vps.group/php-mail-20180818.html 版权声明:本文为原创文章,版权归 qtwrk 所有,欢迎分享本文,转载请保留出处! 3人喜欢 赞赏 PREVIOUS:转载一个测试open_basedir的PHP代码。 NEXT:Redis测试PHP代码文章导航