Procedure to Open User's Default Email Client - SOLVED

Is there a way to open the user’s default mail client with a procedure?

procedure AutoSendMail;
begin
OpenURL("mailto:[email protected]?subject=test&body=Hello World", “”, SW_SHOWNORMAL);
end;

I know OpenURL is not a valid method or routine. But how can I get this to work with ExeOutput?

It’s not OpenURL but OpenFile will do it.

function OpenFile(const Filename, Parameters: String; State: Integer): Integer;

procedure AutoSendMail;
begin
OpenFile(“mailto:[email protected]?subject=test&body=Hello World”, “”, SW_SHOWNORMAL);
end;

Works. Thank you.