在Outlook中创建带附件的邮件并显示它

时间:2011-12-11 12:15:45

标签: delphi outlook mailing

我想在Outlook中创建带附件的邮件并在发送之前显示它,但我想我已经尝试了几乎我在网上找到的所有样本而没有任何运气。 我可以使用Indy,但我非常希望使用Outlook来确保邮件是正确的,因为它是出于商业用途。

以地址,主题,消息和附件作为参数的函数的任何输入,然后在发送之前在Outlook中显示消息。

1 个答案:

答案 0 :(得分:14)

请参阅MailItem.Display Method

uses
  comobj;

..

procedure DisplayMail(Address, Subject, Body: string; Attachment: TFileName);
var
  Outlook: OleVariant;
  Mail: Variant;
const
  olMailItem = $00000000;
begin
  try
    Outlook := GetActiveOleObject('Outlook.Application');
  except
    Outlook := CreateOleObject('Outlook.Application');
  end;
  Mail := Outlook.CreateItem(olMailItem);
  Mail.To := Address;
  Mail.Subject := Subject;
  Mail.Body := Body;
  if Attachment <> '' then
    Mail.Attachments.Add(Attachment);
  Mail.Display;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  DisplayMail('mailaddress', 'subject', 'message', 'attachmentfile');
end;