Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 296 Bytes

examples.md

File metadata and controls

20 lines (15 loc) · 296 Bytes
layout title nav_order
default
Examples
4

Examples

Gmail

Outlook

<?php
$mailbox = '{outlook.office365.com:993/imap/ssl}';
$username = '[email protected]';
$accessToken = '...';

$imap = imap2_open($mailbox, $username, $accessToken, OP_XOAUTH2);