How to Send E-mail With the Default E-mail Client

Posted October 19th @ 9:36 pm by m3Rlin

You may want to allow users to send you back feedback. You can either send it directly to your site via sockets or send the user to your website. What if you don’t have a website? No feedback? Yeah, right. Just have them send it to you by e-mail.
You can not send spaces in URLs, [...]

How to Run Programs and Execute Documents, MailTo: Links and URLs

Posted December 15th @ 12:00 pm by m3Rlin

The easiest way to open a document, program or URL is to use the Windows API ShellExecute() function. Thanks to this function you can execute almost everything in Windows.

uses ShellAPI;

(* sObject - (string) the program, document, URL, … that you want to
** open. This can be:
**
** a document - ‘C:\My Documents\Tips.txt’
** a program - ‘notepad.exe’ [...]