PHP में Outlook नोट्स बनाना और सहेजना

Aspose.Email - Outlook नोट्स बनाना और सहेजना

Aspose.Email Java for PHP का उपयोग करके Outlook नोट्स बनाने के लिए, बस CreateOutlookNote मॉड्यूले को कॉल करें। यहाँ आप उदाहरण कोड देख सकते हैं।

PHP कोड


 $note = new MapiNote();

$note->setSubject("Blue color note");

$note->setBody("This is a blue color note");

$noteColor=new NoteColor();

$note->setColor($noteColor->Blue);

$note->setHeight(500);

$note->setWidth(500);

$noteSaveFormat=new NoteSaveFormat();

$note->save($dataDir . "MapiNote.msg", $noteSaveFormat->Msg);

print "Created outlook note successfully.".PHP_EOL;

चल रहा कोड डाउनलोड करें

नीचे उल्लेखित किसी भी सामाजिक कोडिंग साइट से Outlook नोट्स बनाना और सहेजना (Aspose.Email) डाउनलोड करें: