PHP'de PST'ye Dosya Ekleme

Aspose.Email - Dosyaları PST’ye Ekleme

Aspose.Email Java for PHP kullanarak dosyayı PST’ye eklemek için, yalnızca AddFileToPST modülünü çağırın. Burada örnek kodu görebilirsiniz.

PHP Kodu


 $personalStorage=new PersonalStorage();

$fileFormatVersion=new FileFormatVersion();

$pst = $personalStorage->create($dataDir . "AddFile1.pst", $fileFormatVersion->Unicode);

$standardIpmFolder=new StandardIpmFolder();

$fi = $pst->createPredefinedFolder("Inbox", $standardIpmFolder->Inbox);

$fi->addFile($dataDir . "Report.xlsx", "IPM.Document.Excel.Sheet.8");

$pst->dispose();

print "Added file to PST".PHP_EOL;

Çalışan Kodu İndir

Aşağıda listelenen sosyal kodlama sitelerinden Adding Files to PST (Aspose.Email) indirin: