Problem in sending an email in android
I have a query. In my application, on click of a button, I start an intent to send email. I have set the "To" list, "Subject" and attachment in my coding. Now my problem is that when the email screen i开发者_Go百科s shown, user should not be able modify the email contents nor should he be allowed to remove the attachment. Only he sould be able to click on "Send" button. Please help me out in this. Thanks in advance.
user should not be able modify the email contents nor should he be allowed to remove the attachment.
The user can do whatever the user wants. It is the user's device. It is the user's email account.
If you wish to force the email to be unmodified, you will have to send the email directly via SMTP, collecting email account information from the user.
精彩评论