Unit1.pas
上传用户:netnetfish
上传日期:2021-01-14
资源大小:413k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

Delphi

  1. unit Unit1;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, Rio, SOAPHTTPClient, StdCtrls, InvokeRegistry;
  6. type
  7.   TForm1 = class(TForm)
  8.     HTTPRIO1: THTTPRIO;
  9.     Edit1: TEdit;
  10.     Edit2: TEdit;
  11.     Edit3: TEdit;
  12.     Button1: TButton;
  13.     Memo1: TMemo;
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     Label3: TLabel;
  17.     procedure Button1Click(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23. var
  24.   Form1: TForm1;
  25. implementation
  26. uses IEmailService1;
  27. {$R *.dfm}
  28. procedure TForm1.Button1Click(Sender: TObject);
  29. begin
  30. if (HTTPRIO1 as IEmailService).SendMail(Edit1.Text,Edit2.Text,Edit3.Text,Memo1.Text) = 0 then
  31. ShowMessage('发送成功!');
  32. end;
  33. end.