I\'m using the following piece of code in Android to send a mail:
Intent emailIntent = new Intent(Intent.ACTION_SEND); emailIntent.setType(\"text/html\"); ema
You can't send an email or sms using the built-in apps without user intervention. You have to use an external mail library like the other answer mentions.