转一个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 所有,欢迎分享本文,转载请保留出处!

发表评论


表情