All Projects → anod → Gmail Imap Php

anod / Gmail Imap Php

API to work with Gmail using IMAP built on top of Zend Imap Library

Labels

Projects that are alternatives of or similar to Gmail Imap Php

Imapcopy
Recursively copy all e-mail messages and folders from one IMAP account to another.
Stars: ✭ 52 (-13.33%)
Mutual labels:  gmail, imap
maildir2gmail
Maildir 2 Gmail
Stars: ✭ 14 (-76.67%)
Mutual labels:  imap, gmail
Mail
💌 Mail app for Nextcloud
Stars: ✭ 528 (+780%)
Mutual labels:  imap
Imbox
Python IMAP for Human beings
Stars: ✭ 981 (+1535%)
Mutual labels:  imap
Kanmail
📥 An email client that functions like a kanban board.
Stars: ✭ 833 (+1288.33%)
Mutual labels:  imap
Beelogger
Generate Gmail Emailing Keyloggers to Windows.
Stars: ✭ 605 (+908.33%)
Mutual labels:  gmail
Nioimapclient
High performance, async IMAP client implementation
Stars: ✭ 28 (-53.33%)
Mutual labels:  imap
Imap Backup
Backup GMail (or other IMAP) accounts to disk
Stars: ✭ 522 (+770%)
Mutual labels:  imap
Gmail Fixed Font
Use your browser's monospace font for message body text in Gmail
Stars: ✭ 44 (-26.67%)
Mutual labels:  gmail
Gmail clone
A Gmail Clone built with Flutter
Stars: ✭ 691 (+1051.67%)
Mutual labels:  gmail
Mailgo
💌 mailgo, a new concept of mailto and tel links
Stars: ✭ 978 (+1530%)
Mutual labels:  gmail
Imap
Object-oriented, fully tested PHP IMAP library
Stars: ✭ 678 (+1030%)
Mutual labels:  imap
Apps Script Starter
Setup a local development environment inside Visual Studio Code and build Google Workspace add-ons with Google Apps Script
Stars: ✭ 611 (+918.33%)
Mutual labels:  gmail
How to get emails imap tutorial
How to get emails including there attachments and how to extract various attributes from those emails. See https://youtu.be/zFEEGkvo6O8 for a more detailed information.
Stars: ✭ 30 (-50%)
Mutual labels:  imap
Hydroxide
A third-party, open-source ProtonMail CardDAV, IMAP and SMTP bridge
Stars: ✭ 578 (+863.33%)
Mutual labels:  imap
Unsubscribe Gmail
Gmail Unsubscriber is a Google Apps Script for unsubscribing from unwanted emails newsletters and other bulk emails with one click. It works with Gmail and Google Inbox.
Stars: ✭ 987 (+1545%)
Mutual labels:  gmail
Deltachat Desktop
Email-based instant messaging for Desktop.
Stars: ✭ 526 (+776.67%)
Mutual labels:  imap
Docker Mailserver
Production-ready fullstack but simple mail server (SMTP, IMAP, LDAP, Antispam, Antivirus, etc.) running inside a container.
Stars: ✭ 8,115 (+13425%)
Mutual labels:  imap
Inboxer
Unofficial, free and open-source Inbox by Gmail Desktop App
Stars: ✭ 668 (+1013.33%)
Mutual labels:  gmail
Node Imapnotify
Execute scripts on new messages using IDLE imap command
Stars: ✭ 38 (-36.67%)
Mutual labels:  imap

GMAIL IMAP API in PHP

Wrapper library above Gmail IMAP API.

Features

The library extends Zend Imap Library, this way it provides all basic IMAP functionality. In addition it provides simple Gmail specific API for:

  • OAUTH2 Authentication
  • get UID of the message
  • work with GMail labels: retrive, apply, remove
  • Getting Gmail thread id
  • Utility to convert Gmail message id representation: from big int to hex and opposite
  • Archive message

TODO

  • move to inbox
  • mark as read/unread

Requirements

Composer

  • Zend Imap Library

Usage example

<?php
// \Anod\Gmail\Math::bchexdec("FMfcgxwGCkZzGTlZHvpgXBHPvqzkLKtC") == "1430824723191418813"
$msgId = "1430824723191418813";
$email = "[email protected]";

$protocol = new \Anod\Gmail\Imap(true /* debug */);
$gmail = new \Anod\Gmail\Gmail($protocol);
$gmail->setId("Example App", "0.1", "Alex Gavrishev", "[email protected]");

$gmail->connect();
$gmail->authenticate($email, $token);
$gmail->sendId();
$gmail->selectInbox();
$uid = $gmail->getUID($msgId);

$gmail->applyLabel($uid, "Very Important"); // Apply label to a message with specific UID
$gmail->removeLabel($uid, "Not Important"); // Remove label to a message with specific UID

$message = $gmail->getMessageData($uid); // Retrieve message content
$details = array(
    'subject' => $message->getHeader('subject', 'string'),
    'body' =>  $message->getContent(),
    'from' => $message->getHeader('from', 'string'),
    'to' => $message->getHeader('to', 'string'),
    'thrid' => \Anod\Gmail\Math::bcdechex($message->getThreadId()),
    'labels' => $message->getLabels()
);

$gmail->archive($uid); // Archive the message

Example of fetching token with local server php -S localhost:8000

<?php
session_start();
require_once __DIR__ . '/vendor/autoload.php';

// Based on https://developers.google.com/identity/protocols/OAuth2
$clientId = Clien Id from google console;
$clientSecret = Client secret from google console;
$redirectUri = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];

$client = new Google_Client([
    'client_id' => $clientId,
    'client_secret' => $clientSecret,
    'redirect_uri' => $redirectUri
]);
// Scope for IMAP access
$client->addScope("https://mail.google.com/");
if (isset($_GET['code'])) {
    $token = $client->fetchAccessTokenWithAuthCode($_GET['code']);
    $_SESSION['gmail_token'] = $token;

    // redirect back to the example
    header('Location: ' . filter_var($redirectUri, FILTER_SANITIZE_URL));
    exit;
}

if (!empty($_SESSION['gmail_token'])) {
    $client->setAccessToken($_SESSION['gmail_token']);
    if ($client->isAccessTokenExpired()) {
        unset($_SESSION['gmail_token']);
    }
} else {
    $authUrl = $client->createAuthUrl();
}

if ($authUrl) {
    $authUrl = $client->createAuthUrl();
    header("Location: $authUrl");
    exit;
}

$token = $client->getAccessToken()['access_token'];
echo "Token: $token\n\n";

Author

Alex Gavrishev, 2013

License

Library is licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].