Send an EMail to someune using the default mail application. The passed argumets will be auto-filled.
See Also: SendSMS, SendFile
Example - Example
function OnStart()
{
app.CopyFile( "/Sys/Img/Hello.png", "/sdcard/Hello.png" );
app.SendMail( "myfriend@gmail.com", "MySubject", "Hello", "/sdcard/Hello.png" );
}