怎样在Delphi中使用OutLook(30分)

  • 主题发起人 主题发起人 Kuly
  • 开始时间 开始时间
K

Kuly

Unregistered / Unconfirmed
GUEST, unregistred user!
请教各位高手,在Delphi中怎样才能调用OutLook对象。
 
use shellapi;
shellexecute(handle,'open','mailto:apndy@163.net?subject=abc&body=efg',nil,nil,sw_shownormal);
 
delphi自带outlookApplication这个控件!
 
var Aaddressee,ASubject,Atext,AParam:string;
begin
Aaddressee:= 'E_MAIL地址';
ASubject:='会议提醒';
Atext := '该开会了!^00^';
AParam :='mailto:' + Aaddressee+ '?subject=' + ASubject+ '&Body=' + Atext;
shellexecute( handle,'open',PChar(AParam),nil,nil,sw_shownormal);
 
用ole自动化或直接用delphi自带的outlookApplication控件!
var
Excel: OleVariant;
begin
try
Excel:=CreateOleObject('Outlook.Application');
........
except
messagebox(handle,'没有安装outlool程序!','提示',MB_OK+MB_ICONINFORMATION);
end;
end;
 
后退
顶部