Question:
Ok , I have a strange output from SmtpSendRawCommand when doing this :
Dim rasp As String = String.Empty
rasp = mailman.SmtpSendRawCommand("MAIL FROM:root\r\n", "ascii", False)
Console.WriteLine(rasp)
rasp = mailman.SmtpSendRawCommand("rcpt to:test", "ascii", False)
Console.WriteLine(rasp)
I get 530 SMTP authentication is required.
, however ,when I telnet into the same server, same commands, I get this :