SILENT KILLERPanel

Current Path: > > opt > cloudlinux > alt-php52 > > root > usr > share > pear > test > Net_SMTP > tests


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/alt-php52//root/usr/share/pear/test/Net_SMTP/tests

NameTypeSizeLast ModifiedActions
auth.phpt File 545 bytes December 02 2021 08:06:03.
basic.phpt File 914 bytes December 02 2021 08:06:03.
config.php.dist File 488 bytes December 02 2021 08:06:03.
quotedata.phpt File 1920 bytes December 02 2021 08:06:03.

Reading File: //opt/cloudlinux/alt-php52//root/usr/share/pear/test/Net_SMTP/tests/basic.phpt

--TEST--
Net_SMTP: Basic Functionality
--SKIPIF--
<?php if (!@include('config.php')) die("skip\n");
--FILE--
<?php

require_once 'Net/SMTP.php';
require_once 'config.php';

if (! ($smtp = new Net_SMTP(TEST_HOSTNAME, TEST_PORT, TEST_LOCALHOST))) {
	die("Unable to instantiate Net_SMTP object\n");
}

if (PEAR::isError($e = $smtp->connect())) {
	die($e->getMessage() . "\n");
}

if (PEAR::isError($e = $smtp->auth(TEST_AUTH_USER, TEST_AUTH_PASS))) {
    die("Authentication failure\n");
}

if (PEAR::isError($smtp->mailFrom(TEST_FROM))) {
	die('Unable to set sender to <' . TEST_FROM . ">\n");
}

if (PEAR::isError($res = $smtp->rcptTo(TEST_TO))) {
	die('Unable to add recipient <' . TEST_TO . '>: ' .
		$res->getMessage() . "\n");
}

if (PEAR::isError($smtp->data('Subject: ' . TEST_SUBJECT . "\r\n\r\n" . TEST_BODY))) {
	die("Unable to send data\n");
}

$smtp->disconnect();

echo 'Success!';

--EXPECT--
Success!

SILENT KILLER Tool