Я выполнил все необходимые настройки. Настройка MAIP выполняется в outlook mail.imap, и в Gmail включено менее безопасное приложение a / c
//this is my code using to get connected with outlook
$hostname = '{outlook.office365.com:993/imap/ssl/novalidate-cert}INBOX';
$inbox = imap_open("{$hostname}", $user , $pass ) or die("can't connect: " . imap_last_error());
if($inbox)
{
echo'yes';
}
else
{
echo'No';
}