Hi
I am new to Android app development and writing an app which I want to send a plain text email using K-9. For that to work, AIUI K-9’s AndroidManifest.xml must include an activity with an intent-filter for android.intent.action.SENDTO, something like
<intent-filter>
<action android:name="android.intent.action.SENDTO" />
<data android:scheme="mailto" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
As best I can tell K-9 does not have that.
Is there another way for an app to send a plain text email using K-9?
Here’s what I tried (/ and . in links changed to spaces because of new user restriction):
- Viewed github com thunderbird thunderbird-android blob main app-k9mail src main AndroidManifest.xml and github com thunderbird thunderbird-android blob main app-k9mail src main AndroidManifes xml
- Read FAQ
- Searched all issues at github com thunderbird thunderbird-android issues for intent
- Searched this forum for intent
- Found related enhancement request github com thunderbird thunderbird-android issues 3231 “k9mail as default email app #3231” opened 2018 closed 2020
- Found related enhancement request github com thunderbird thunderbird-android issues 7755 Add support for mailto URI on NFC tag.