接收pop3
Public Function Retrieve(ByVal rhs As pop3Message) As pop3Message
Dim message, response As String
Dim msg As New pop3Message
msg.bytes = rhs.bytes
msg.number = rhs.number
message = "RETR " + rhs.number.ToString + vbCrLf
write(message)
response = Respond()
If response.Substring(0, 3) <> "+OK" Then
Throw New Pop3Exception(response)
End If
MsgBox(msg)
msg.retrieved = True
While (1 = 1)
response = Respond()
If response = "." + vbCrLf Then
Exit While
Else
msg.message += response
End If
End While
Return msg
End Function
标签:
pop3Message
Function
Retrieve
response
上传时间:
2013-12-28
上传用户:fnhhs