B4A Question [Solved] Intent SENDTO don't work correctly with Gmail app - asales    Mar 6, 2020
intent1.Initialize("android.intent.action.SENDTO", "mailto:[email protected]")
intent1.putExtra("android.intent.extra.SUBJECT", "Subject of the e-mail")
intent1.putExtra("android.intent.extra.TEXT", "Body/content of the e-mail")
StartActivity... the intent ACTION_SEND?
Thanks in advance.... B4A Question found the right sample - one issue to solve and it be perfect for me - Zeev Goldstein    Sep 7, 2024 i add CC & BCC? and how to i add an attachment? (will the attachment cause the intent to fail again and open all sharing apps?) thanks... Dim in As Intent in.Initialize("android.intent.action.SENDTO", "mailto:") in.PutExtra("android.intent...("android.intent.extra.TEXT", "this is the body"...hi found this piece of code it seems to be the only one that opens the email intent only and not... B4A Question send mail with attachment - Zeev Goldstein    Sep 8, 2024 As Intent
Try
in.Initialize("android.intent.action.SENDTO", "mailto:")
in.PutExtra("android.intent.extra.EMAIL", Array As String(SendTO))
in.PutExtra("android.intent.extra.CC", Array As String(SendCC))
in... B4A Question [Solved] Only email apps to use with intent.ACTION_SEND - asales    Mar 7, 2020 The intent "android.intent.action.SENDTO" don't work anymore with Gmail to passes the subject and body. The "intent.ACTION_SEND" works, but show several apps in the list to share (Acrobat, Files, Drive, WhatsApp, Telegram...). I want to filter these list-options and show only the email related apps. Is possible? How I can do this? Thanks in advance for any tip.... B4A Question SMS hyperlink opens application Messages but no new SMS appears. - Erel (first post)    Nov 16, 2022 Based on: https://stackoverflow.com/a/64648096
Try to add:
AddManifestText(
<queries>
<intent>
<action android:name="android.intent.action.SENDTO" />
<data android:scheme="smsto"/>
</intent>
</queries>
)
If it doesn't work then try it with smsto: instead of sms: (in the intent).... B4i Question is there any way to open whatsapp with especific number? - Alain75 (first post)    Dec 7, 2022 No need to use javaobject :
strt.Initialize("android.intent.action.SENDTO","smsto:"&xxxx)
strt.SetPackage("com.whatsapp")
StartActivity(strt)... B4A Code Snippet Correct Intent to compose an email on Android - ivan.tellez    Oct 9, 2014   (6 reactions)
intent1.Initialize("android.intent.action.SENDTO", "mailto:[email protected]")
intent1.putExtra("android.intent.extra.SUBJECT", "This is the subject"... B4A Question How to show only email apps when sharing text via intent - asales (first post)    Jul 4, 2022   (4 reactions) Dim in As Intent
in.Initialize("android.intent.action.SENDTO", "mailto:")
in.PutExtra("android.intent.extra.EMAIL", Array As String("[email protected]"))
in.PutExtra("android.intent.extra.SUBJECT", "this is the subject")
in.PutExtra... B4A Question It worked on Android 10 - steveo    Nov 5, 2023 on/off" an app. Using 'android.intent.action.SENDTO' with extra string data, the test worked well on an android 10 phone. If the app was already running then sending an intent would... jo.RunMethod("finishAndRemoveTask", Null) End Sub <intent-filter> <action android:name="android.intent.action.SENDTO" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="text/plain" />... B4A Tutorial Intent Filters - Intercepting SMS messages in the background - Erel    Jan 13, 2023   (14 reactions) example if we want to listen for intents with the action: android.provider.Telephony.SMS_RECEIVED we...) AddReceiverText(s1, <intent-filter> <action android:name="android.provider.Telephony...) If startingIntent.Action = "android.provider.Telephony.SMS_RECEIVED" Then Dim... the intent action. If it fits then the messages will be parsed from the intent. This is done with the help.... There are two types of receivers in Android: statically registered receivers and dynamically registered... Page: 1   2   3   4   5   6   7   |