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 [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 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 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 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... B4A Question Send photo Message - Theera (first post)    Apr 14, 2023
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme... B4A Question [SOLVED] Automatically sending an email from B4A - Alex_197 (first post)    Oct 28, 2020   (1 reaction) Check this one
Dim in As Intent
in.Initialize("android.intent.action.SENDTO", "mailto:")
in.PutExtra("android.intent.extra.EMAIL", Array As String(EmailToStr))
in.PutExtra("android.intent.extra.SUBJECT", "Some Subj")
in.PutExtra("android.intent.extra.TEXT", BodyStr)
StartActivity(in)... B4A Question Intercept SMS messages without notification Android 4.4 - DaOel (first post)    Jan 11, 2023 ="android.intent.action.SENDTO" />
<category android:name="android.intent...
<intent-filter>
<action android:name="android.provider.Telephony... Page: 1   2   3   4   5   6   7   |