Issuing POP3 commands |
Upon establishing a connection to a POP3 server you can send commands to the POP3 server by invoking the Pop#issueCommand method and passing the command as an argument. The server response to the command sent will be returned as a result.
Example
// send TOP command to server String response = pop.issueCommand("TOP 1 11"); |