Discuss this help topic in SecureBlackbox Forum

TElPOP3Client.DeleteMessage

TElPOP3Client     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This method deletes a message from the mailbox.

Declaration

[C#]
    void DeleteMessage(int Index);

[VB.NET]
    Sub DeleteMessage(ByVal Index As Integer)

[Pascal]
    procedure DeleteMessage(Index : integer);

[C++]
    void DeleteMessage(int32_t Index);

[PHP]
    void DeleteMessage(integer $Index)

[Java]
    void deleteMessage(int Index);

Parameters

  • Index - index of the message to delete

Description

    Call this method to delete the message from the mailbox. The message is not deleted immediately. Instead the server deletes the marked messages when you gracefully close POP3 connection. If needed, messages can be "undeleted" during the same session by calling Undelete (or Reset, which is a standard name for POP3 command).

See also:     Close     Reset (Undelete)    

Discuss this help topic in SecureBlackbox Forum