when sending an email like so $ec->send_message("dummy@example.com", "Subject", "Content");, the function returns 0 and print_r($ec->lastError); shows ErrorMessageDispositionRequired.
I was able work around this using $ec->send_message("dummy@example.com", "Subject", "Content", "Text", false); but it would be nice if this worked even with $saveinsent = true.
Hi,
when sending an email like so
$ec->send_message("dummy@example.com", "Subject", "Content");
, the function returns 0 andprint_r($ec->lastError);
showsErrorMessageDispositionRequired
.I was able work around this using
$ec->send_message("dummy@example.com", "Subject", "Content", "Text", false);
but it would be nice if this worked even with$saveinsent = true
.I believe the server I use runs Exchange 2013.
Thanks!