VPS小组

转一个PHP邮件发送的测试代码。

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

 

测试效果:

退出移动版