PHP-Code:
<?
$objApp = new COM("Outlook.Application");
$myItem = $objApp->CreateItem(olMailItem);
$a=$myItem->Recipients->Add("recipient's email address here");
$myItem->Subject=" Your Subject";
$myItem->Body="Body apears here";
$myItem->Display();
$myItem->Send();
?>
Fatal error: Call to a member function on a non-object in c:\apache\users\test\mail.php on line 4
vielleicht weiss jemand ja woran es liegt, hab verschiedene skripte schon gefunden , und alle ham den gleichen fehler.
(apache 1.3 / Php 4)
Kommentar