B4A Question send sms using google messages stopped working - urgent ... - sirjo66 (first post) Oct 15, 2024 (1 reaction) Wrong !!!
The correct is:
Intent1.Initialize("android.intent.action.SENDTO", "smsto:" & PhoneNumber) 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) StartAc B4A Question send mail with attachment - teddybear (first post) Sep 09, 2024 You can't use android.intent.action.SENDTO to add attachment. ACTION_SENDTO is for no attachment,See doc B4A Question Problem with SMS reception - Filippo Oct 23, 2024 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="sms" /> <data android:scheme="smsto" /> <data android:scheme="m B4A Question Send photo Message - Theera (first post) Apr 14, 2023 AddActivityText(Main, <!-- Activity that allows the user to send new SMS/MMS messages--> <activity android:name=".ComposeSmsActivity"> <intent-filter> <action android:name="android.intent.action.SEND" /> <action android:name= B4A Question [Solved] Intent SENDTO don't work correctly with Gmail app - JohnC (first post) Mar 08, 2020 Yes, that would make sense because the android docs I sent you said:
If you want to ensure that your intent is handled only by an email app (and not other text messaging or social apps), then use the ACTION_SENDTO action and include the "mailto:" data scheme.
Which Erel's code does:
in.Initialize( B4A Question [Solved] Only email apps to use with intent.ACTION_SEND - asales Mar 07, 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 B4A Question How to show only email apps when sharing text via intent - asales (first post) Jul 05, 2022 (4 reactions) Dim in As Intent
in.Initialize("android.intent.action.SENDTO", "mailto:")
in.PutExtra("android.intent.extra.EMAIL", Array As String("email@example.com"))
in.PutExtra("android.intent.extra.SUBJECT", "this is the subject")
in.PutExtra("android.intent.extra.TEXT", "this is the body")
StartActivity(in)
B4A Question It worked on Android 10 - steveo Nov 05, 2023 I have copied and pasted together some code to test if MicroDroid can send Intents to "turn 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 "turn it off". If the app B4A Question Email intent + attachment: email clients only are required - Erel (first post) Jun 17, 2018 (1 reaction) Without attachments: https://www.b4x./?query=android.intent.action.SENDTO
With attachments you must use Email library. There isn't any other solution that will work better.
If you implemented the sendto intent correctly and the email client app doesn't handle it properly then there isn't anything t Page: 1 2 3 4 5 6 7 Powered by ColBERT |