yaya_star 0 Light Poster

i have this code with no error , but when i open the email there is nothing in it, why?
Dim m As New MailMessage("ayh@hotmail.com", "cuosh@hotmail.com", "hi", "hiiii")
Dim s As New SmtpClient("mx2.hotmail.com")
Try
s.Send(m)
MessageBox.Show("ok")
Catch ex As Exception
MessageBox.Show(ex.ToString)
End Try