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)**을 다운로드하십시오: