Dim Message As Email
Message.To.Add("
[email protected]")
Message.Attachments.Add(File.Combine(File.DirRootE xternal, "SomeFile.txt"))
StartActivity(Message.GetIntent)
This works perfectly. However, the line "StartActivity" launches a "Complete action using..." activity. I expected this to happen, as I have more than one email app installed that can deal with the intent. However, the list of apps I am presented with includes...
Bluetooth
Copy to Clipboard
Google Drive
Facebook
Google
Google+
LinkedIn
Messaging
WiFi Direct
... why would all these other apps appear? I would not have thought "Bluetooth" would cope with the email intent (in fact it does not, if I select it I get an error "Unable to open file for sharing"). If I select an email app the intent works perfectly.
Is there any way to prevent all these other apps from displaying?
Many thanks,
Murdoch