MailGenF.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit MailGenF;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, NMURL, ExtActns, ActnList;
  6. type
  7.   TForm1 = class(TForm)
  8.     BtnSend: TButton;
  9.     EditAddress: TEdit;
  10.     Label1: TLabel;
  11.     Label2: TLabel;
  12.     EditSubject: TEdit;
  13.     Memo1: TMemo;
  14.     procedure BtnSendClick(Sender: TObject);
  15.     procedure EditAddressChange(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21. var
  22.   Form1: TForm1;
  23. implementation
  24. {$R *.DFM}
  25. uses
  26.   ShellApi;
  27. procedure TForm1.BtnSendClick(Sender: TObject);
  28. var
  29.   strMsg: string;
  30.   I: Integer;
  31. begin
  32.   // set the basic information
  33.   strMsg := 'mailto:' + EditAddress.Text +
  34.     '?Subject=' + EditSubject.Text +
  35.     '&Body=';
  36.   // add first line
  37.   if Memo1.Lines.Count > 1 then
  38.     strMsg := strMsg + Memo1.Lines [0];
  39.   // add subsequent lines separated by the newline symbol
  40.   for I := 1 to Memo1.Lines.Count - 1 do
  41.     strMsg := strMsg + '%0D%0A' + Memo1.Lines [I];
  42.   // send the message
  43.   ShellExecute (Handle, 'open', pChar (strMsg),
  44.     '', '', SW_SHOW);
  45. end;
  46. procedure TForm1.EditAddressChange(Sender: TObject);
  47. begin
  48.   BtnSend.Enabled := EditAddress.Text <> '';
  49. end;
  50. end.