CoasterKaty / PHPGraphMailer

PHP Class to send email through Microsoft Graph API
https://katystech.blog/2020/08/php-graph-mailer/
GNU General Public License v2.0
34 stars 18 forks source link

SentItems #15

Closed oliphil closed 10 months ago

oliphil commented 10 months ago

Hello,

Everything works fine to send email however, I can't see any of the sent items in the folder "sent" in spite the fact that I set false in

$graphMailer->sendMail('my@email.com', $mailArgs, 'false');

Any hint ?

CoasterKaty commented 10 months ago

You need to pass the Boolean false, not a string containing the word “false”, ie

$graphMailer->sendMail('my@email.com', $mailArgs, false);

that should then skip the deletion of the item from sent items.

oliphil commented 10 months ago

OMG ! Now I'm embarrassed just for asking !

Thank you !