Ok im making a vb.net program that will let me write some notes in a textbox and when i press a button, it will send the notes that i have entered in the textbox and send it to a mail account with the notes in the body of the email. I programmed it in and when I try to send the information it tells me that the email i am using requires pop authintication. Here is what I have.

Module Send
Sub Main()
'Change each of the parameters to your specific values
SMTP.QuickSend("smtp.hotpop.com", "(my email)", _
"(my email)", "ConquerOnline", "Body Text", _
BodyPartFormat.Plain)
End Sub
End Module

and i am using the http://www.quiksoft.com/freesmtp/ component. If anyone could help that would be great. Thanks