From c67ff5019a9a53f4a6202f2ef18e5a5d30a29880 Mon Sep 17 00:00:00 2001 From: kekaadrenalin Date: Fri, 15 Nov 2019 11:16:46 +0400 Subject: [PATCH] small fix in readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 92f6816..383ceaa 100644 --- a/README.md +++ b/README.md @@ -61,18 +61,18 @@ $imapConnection->decodeMimeStr = true; $mailbox = new kekaadrenalin\Mailbox($imapConnection); ``` -#To get all mails and its index +# To get all mails and its index ```php $mailIds = $mailbox->searchMailBox(); // Gets all Mail ids. print_r($mailIds); ``` -#Do not read attachments +# Do not read attachments ```php $mailbox->readMailParts = false; ``` -#To read Inbox contents +# To read Inbox contents ```php foreach($mailIds as $mailId) { @@ -95,7 +95,7 @@ foreach($mailIds as $mailId) } ``` -#To Mark and delete mail from IMAP server. +# To Mark and delete mail from IMAP server. ```php $mailbox->deleteMail($mailId); // Mark a mail to delete $mailbox->expungeDeletedMails(); // Deletes all marked mails