B4X
B4X
IMAP NOOP Command
Demonstrates how to send an IMAP NOOP command using SendRawCommand.Chilkat B4X Downloads
Dim success As Boolean = False
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim imap As ChilkatImap
imap.Initialize("imap")
' Connect to an IMAP server.
' Use TLS
imap.Ssl = True
imap.Port = 993
success = imap.Connect("imap.example.com")
If success <> True Then
Log(imap.LastErrorText)
Return
End If
' Login
success = imap.Login("****", "****")
If success <> True Then
Log(imap.LastErrorText)
Return
End If
' Send a NOOP command
Dim resp As String = imap.SendRawCommand("NOOP")
Log(resp)
' Disconnect from the IMAP server.
success = imap.Disconnect