below u can see my code...i made a mailer...and try to test it.
and i know ther is sopose to be Text-box that recived the outpot..
some 1 can tell me how to name it?
the code is below so bye that u can tell me the name
VB Code:
Private Mail As String
Private Sub Command1_Click()
Connected = False
Socket.Close
Socket.Connect "smtp.012.net.il", 25
' Attente de connection !
While Connected <> True: DoEvents: Wend
' Traitement et Envoie du Mail !
Mail = "HELO " & Socket.LocalHostName & vbCrLf
Mail = Mail & "DATA" & vbCrLf
Mail = Mail & "subject: New Mail" & vbCrLf
Mail = Mail & "from: NVM" & vbCrLf
Mail = Mail & "to: ME" & vbCrLf
Mail = Mail & " "
Mail = Mail & vbCrLf & "." & vbCrLf
Mail = Mail & "QUIT" & vbCrLf
Socket.SendData Mail
End Sub