retrieveTopLines method

Future<MimeMessage> retrieveTopLines(
  1. int messageId,
  2. int numberOfLines
)

Downloads the first numberOfLines lines of the message with the messageId

Implementation

Future<MimeMessage> retrieveTopLines(int messageId, int numberOfLines) {
  return sendCommand(PopRetrieveCommand(messageId));
}