I know that it's easy to initiate an email using an Email object, creating an intent that holds a complete email message and then launching the email application by calling StartActivity. However, the email is not sent automatically, requiring the user to press on the send button. My question is whether there's any possible way to automate the sending of an email without having to press send. In my app, it would be great to be able to automate emails with different messages to a number of recipients without having to push send for each one. It appears the answer is no if the Email object is used, but has anyone found a different way to do this?