I have one of the questions of the type that would usually make me say "Why would you want to do that" and assume it will be used for malicious purposes, but here goes...
How can I send email without user interaction, without implementing my own email sender?
Before any of you suggest it - I'm aware of Javamail and I've used the approach before so will fall back to that if I need to. I'm also aware of how to trigger a chooser and how to open a compose screen directly. What I want is none of those.
I have a feedback form in my app. 3 text fields and a button. When the user hits the button I send the data in the fields to myself, but to save increasing my app's size further I want to send the mail through whatever mail app is currently installed/default, all without further user interaction.
Is this possible?