<?php 
/* 
 * test_sendmail_mail.php 
 * 
 * @(#) $Header: /opt2/ena/metal/mimemessage/test_sendmail_mail.php,v 1.2 2003/10/05 17:46:14 mlemos Exp $ 
 * 
 * 
 */ 
 
    require("sendmail_mail.php"); 
 
    /* 
     *  Change these variables to specify your test sender and recipient addresses 
     */ 
    $from="[email protected]"; 
    $to="[email protected]"; 
 
    $subject="Testing sendmail_mail function"; 
    $message="Hello,\n\nThis message is just to let you know that the sendmail_mail() function is working fine as expected.\n\n$from"; 
    $additional_headers="From: $from"; 
    $additional_parameters="-f ".$from; 
    if(sendmail_mail($to,$subject,$message,$additional_headers,$additional_parameters)) 
        echo "Ok."; 
    else 
        echo "Error: ".$message_object->error."\n"; 
 
?>
 
 |