wiki:send_test_email_via_php
Table of Contents
Send test email via php
Create the test-email.php script with the following:
<?php ini_set( 'display_errors', 1 ); error_reporting( E_ALL ); $from = "emailtest@YOURDOMAIN"; $to = "YOUREMAILADDRESS"; $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"; ?>
Change from and to fields to match your mail.
From server cmd line execute
php test-email.php
Tested on
See also
References
wiki/send_test_email_via_php.txt · Last modified: 2021/04/14 13:15 by antisa