Sample code for 30+ languages & platforms
PHP ActiveX

IMAP NOOP Command

Demonstrates how to send an IMAP NOOP command using SendRawCommand.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

$success = 0;

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

$imap = new COM("Chilkat.Imap");

// Connect to an IMAP server.
// Use TLS
$imap->Ssl = 1;
$imap->Port = 993;
$success = $imap->Connect('imap.example.com');
if ($success != 1) {
    print $imap->LastErrorText . "\n";
    exit;
}

// Login
$success = $imap->Login('****','****');
if ($success != 1) {
    print $imap->LastErrorText . "\n";
    exit;
}

// Send a NOOP command
$resp = $imap->sendRawCommand('NOOP');
print $resp . "\n";

// Disconnect from the IMAP server.
$success = $imap->Disconnect();

?>