I /var/www/html/xxx/pear_test/PEAR altında benim klasöre armut indirdiğiniz
Benim komut dosyası bu klasörün altında
<?
ini_set("include_path",".:/var/www/html/XXX/pear_test/PEAR");
require_once "Mail.php";
$from = "Sender <name1@xxx.com>";
$to = "name <name2@xxx.com>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$host = "XXXX";
$username = "XXX";
$password = "XX";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
?>
I dosyasını çalıştırdığınızda i hatası alıyorum
Uyarı: require_once (mail.php 'yi) [function.require-once]: DSA Böyle bir dosya ya da dizin yok: failed to open stream