Just create a PHP page with the .php extension and include the following. Replace \"
[email protected]\" with the email address you want the test email to come to. Load the page to any web directory on the server that is accessable by IP or Domain, and then call it in your browser.
If your sendmail is working properly, it should send the email.
------- Cut and paste below -------
<?
mail(\"
[email protected]\",\"Test Email\",\"This is a test.\",\"From:
[email protected]\");
print \"The mail has been sent!\";
?>
----- End cut and paste --------
[Edited on 10/27/01 by wscreate]