<?php /* * test_smtp.php * * @(#) $Header: /home/mlemos/cvsroot/smtp/test_smtp.php,v 1.19 2011/02/03 08:08:24 mlemos Exp $ * */
require("smtp.php");
/* Uncomment when using SASL authentication mechanisms */ /* require("sasl.php"); */
$from=""; /* Change this to your address like "me@mydomain.com"; */ $sender_line=__LINE__; $to=""; /* Change this to your test recipient address */ $recipient_line=__LINE__;
if(strlen($from)==0) die("Please set the messages sender address in line ".$sender_line." of the script ".basename(__FILE__)."\n"); if(strlen($to)==0) die("Please set the messages recipient address in line ".$recipient_line." of the script ".basename(__FILE__)."\n");
$smtp=new smtp_class;
$smtp->host_name="localhost"; /* Change this variable to the address of the SMTP server to relay, like "smtp.myisp.com" */ $smtp->host_port=25; /* Change this variable to the port of the SMTP server to use, like 465 */ $smtp->ssl=0; /* Change this variable if the SMTP server requires an secure connection using SSL */
$smtp->http_proxy_host_name=''; /* Change this variable if you need to connect to SMTP server via an HTTP proxy */ $smtp->http_proxy_host_port=3128; /* Change this variable if you need to connect to SMTP server via an HTTP proxy */
$smtp->socks_host_name = ''; /* Change this variable if you need to connect to SMTP server via an SOCKS server */ $smtp->socks_host_port = 1080; /* Change this variable if you need to connect to SMTP server via an SOCKS server */ $smtp->socks_version = '5'; /* Change this variable if you need to connect to SMTP server via an SOCKS server */
$smtp->start_tls=0; /* Change this variable if the SMTP server requires security by starting TLS during the connection */ $smtp->localhost="localhost"; /* Your computer address */ $smtp->direct_delivery=0; /* Set to 1 to deliver directly to the recepient SMTP server */ $smtp->timeout=10; /* Set to the number of seconds wait for a successful connection to the SMTP server */ $smtp->data_timeout=0; /* Set to the number seconds wait for sending or retrieving data from the SMTP server. Set to 0 to use the same defined in the timeout variable */ $smtp->debug=1; /* Set to 1 to output the communication with the SMTP server */ $smtp->html_debug=1; /* Set to 1 to format the debug output as HTML */ $smtp->pop3_auth_host=""; /* Set to the POP3 authentication host if your SMTP server requires prior POP3 authentication */ $smtp->user=""; /* Set to the user name if the server requires authetication */ $smtp->realm=""; /* Set to the authetication realm, usually the authentication user e-mail domain */ $smtp->password=""; /* Set to the authetication password */ $smtp->workstation=""; /* Workstation name for NTLM authentication */ $smtp->authentication_mechanism=""; /* Specify a SASL authentication method like LOGIN, PLAIN, CRAM-MD5, NTLM, etc.. Leave it empty to make the class negotiate if necessary */
/* * If you need to use the direct delivery mode and this is running under * Windows or any other platform that does not have enabled the MX * resolution function GetMXRR() , you need to include code that emulates * that function so the class knows which SMTP server it should connect * to deliver the message directly to the recipient SMTP server. */ if($smtp->direct_delivery) { if(!function_exists("GetMXRR")) { /* * If possible specify in this array the address of at least on local * DNS that may be queried from your network. */ $_NAMESERVERS=array(); include("getmxrr.php"); } /* * If GetMXRR function is available but it is not functional, to use * the direct delivery mode, you may use a replacement function. */ /* else { $_NAMESERVERS=array(); if(count($_NAMESERVERS)==0) Unset($_NAMESERVERS); include("rrcompat.php"); $smtp->getmxrr="_getmxrr"; } */ }
if($smtp->SendMessage( $from, array( $to ), array( "From: $from", "To: $to", "Subject: Testing Manuel Lemos' SMTP class", "Date: ".strftime("%a, %d %b %Y %H:%M:%S %Z") ), "Hello $to,\n\nIt is just to let you know that your SMTP class is working just fine.\n\nBye.\n")) echo "Message sent to $to OK.\n"; else echo "Could not send the message to $to.\nError: ".$smtp->error."\n"; ?>
|