יצירת ושמירת פתקים של Outlook ב-PHP
Contents
[
Hide
]
Aspose.Email - יצירת ושמירת פתקיות Outlook
ליצירת פתקי Outlook באמצעות Aspose.Email Java for PHP, יש לקרוא למודול 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;
הורד קוד רץ
הורד את Creating and Saving Outlook Notes (Aspose.Email) מאתרי הקוד החברתי המופיעים למטה: