wwsocket::Send
Sends data to a socket on the server.
o.send(lcInput)
.T. or .F.
Parameters
lcInput
String to send to socket.
Example
** SMTP Server Logon loIP = CREATE( "wwSocket") loIP.lStripNulls = .T. loIP.Connect("mail.somemailserver.net",25)
** Retrieve the welcome message loIP.Receive() && Welcome Message
** Send username loIP.Send("helo Rick" + CRLF)
** Echos back the mail servers welcome message ? loIP.Receive()
** Close the connection loIP.Disconnect()
See also
Class wwsocket© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic