W
win
I tried
using (TcpClient client = new TcpClient("pop.gmail.it" , 110 ))
using (NetworkStream n = client.GetStream())
{
ReadLine(n);
SendCommand(n, "USER user");
SendCommand(n, "PASS pw");
but it tells me Login Failed
Can you help?
Thanks.
using (TcpClient client = new TcpClient("pop.gmail.it" , 110 ))
using (NetworkStream n = client.GetStream())
{
ReadLine(n);
SendCommand(n, "USER user");
SendCommand(n, "PASS pw");
but it tells me Login Failed
Can you help?
Thanks.