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