hey i've sending email page project
i need to send email from that page to freebsdx@hotmail.com and that msg reach my inbox in the hotmail here is my code
Private Sub ToolBar2_ButtonClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ToolBarButtonClickEventArgs)
Try
Dim from As String = textBox1.Text
Dim [to] As String = textBox2.Text
Dim subject As String = textBox3.Text
Dim body As String = textBox4.Text
SmtpMail.SmtpServer = ""
SmtpMail.Send(from, [to], subject, body)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub


---------------
can anybody tel me what dd i missed and what my smtp server should be..
Thanks alot in adavnce