首页  编辑  

发送短信息给ICQ?

Tags: /超级猛料/Network.网络通讯/其它/   Date Created:
send a message to ICQ ?

{
  You need 3 TEdits, 1 TMemo und 1 TClientSocket.
  Set the  TClientsocket's Port to 80 and the Host to wwp.mirabilis.com.
}
var
  Form1: TForm1;
  csend: string;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
  csend := 'POST http://wwp.icq.com/scripts/WWPMsg.dll HTTP/2.0' + chr(13)
    + chr(10);
  csend := csend + 'Referer: http://wwp.mirabilis.com ' + chr(13) + chr(10);
  csend := csend + 'User-Agent: Mozilla/4.06 (Win95; I)' + chr(13) + chr(10);
  csend := csend + 'Connection: Keep-Alive' + chr(13) + chr(10);
  csend := csend + 'Host: wwp.mirabilis.com:80' + chr(13) + chr(10);
  csend := csend + 'Content-type: application/x-www-form-urlencoded' + chr(13)
    + chr(10);
  csend := csend + 'Content-length:8000' + chr(13) + chr(10);
  csend := csend +
    'Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*' + chr(13)
    + chr(10) + chr(13) + chr(10);
  csend := csend + 'from=' + edit1.Text + ' &fromemail=' + edit2.Text +
    ' &fromicq:110206786' + ' &body=' + memo1.Text + ' &to=' + edit3.Text
    + '&Send=';
  clientsocket1.Active := True;
end;

procedure TForm1.ClientSocket1Connect(Sender: TObject;
  Socket: TCustomWinSocket);
begin
  clientsocket1.Socket.SendText(csend);
  clientsocket1.Active := False;
end;