Related Pages
Delphi Tips and Code
- Clearing edit fields
- Starting default browser
- Starting applications
- Connecting to / disconnecting from network
Delphi Applications
Home > Delphi Development >
Start email
Delphi Tips and Code
Starting the default email client
To open the default email client with an email address already entered (i.e. your support email address) use the following code.
procedure TForm1.Button1Click(Sender: TObject);
begin
ShellExecute(GetDesktopWindow(), nil, pChar('mailto:support@kasabsoftware.com.au'), nil,
nil, SW_SHOWNORMAL);
end;
Start default browser: Next