this slowpoke moves

Send eMail over Outlook with Attachment

uses ExtCtrls, ComObj

//

procedure SendMail(Subject, Body, RecvAddress : string; Attachs : array of string);
var
  MM, MS : Variant;
  i : integer;
begin
  MS := CreateOleObject('MSMAPI.MAPISession');
  try
    MM := CreateOleObject('MSMAPI.MAPIMessages');
    try
      MS.DownLoadMail := False;
      MS.NewSession := False;
      MS.LogonUI := True;
      MS.SignOn;
      MM.SessionID := MS.SessionID;
      MM.Compose;
      MM.RecipIndex := 0;
      MM.RecipAddress := RecvAddress;
      MM.MsgSubject := Subject;
      MM.MsgNoteText := Body;

      for i := Low(Attachs) to High(Attachs) do
      begin
        MM.AttachmentIndex := i;
        MM.AttachmentPathName := Attachs[i];
      end;
      MM.Send(True);
      MS.SignOff;
    finally
      VarClear(MS);
    end;
  finally
    VarClear(MM);
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  SendMail('Subject',
           'Body'#13#10'Second',
           'BillGates@Microsoft.com',
           ['C:\Winnt\explorer.exe', 'C:\winnt\win.ini']);
end;

Keine Kommentare:

Kommentar veröffentlichen

Beliebte Posts

Translate