Re: starting e-mails


[ Related Articles and Replies ] [ DelphiLand FAQ ] [ Delphi Tutorials ]

Posted by Rbrrneck on August 14, 2002 at 21:55:33:

In Reply to: starting e-mails posted by qwertyx85 on August 13, 2002 at 23:08:56:

: How can I start immediatly e-mail like mailto:qwertyx85@yahoo.com command in HTML.

uses ShellApi;

Procedure TForm1.Button1.click(Sender:TObject);
begin
  Shellexecute(handle,'open','mailto:qwertyx85@yahoo.com?subject=Wow it works',nil,nil,sw_show);
end;
 

Related Articles and Replies:


[ Related Articles and Replies ] [ DelphiLand FAQ ] [ Delphi Tutorials ]