B4A Question Sending an email - AndreyPozdnyakov    Apr 14, 2023 As the application runs, I send an email.
email.To.Add(emailAddress)
email.Subject = "Program crashed"
email.Body = sBody
StartActivity(email.GetIntent)
I need to wait for the email sending process to complete before my application can continue.
How can I tell if an email has already been sent?
T B4J Question Wrong Format Message Body In Email Server - Erel (first post)    Sep 08, 2020 How are you sending the emails? B4A Question [SOLVED] Automatically sending an email from B4A - Alex_197 (first post)    Oct 28, 2020   (1 reaction) Body= "Testing 123."
EmailTo="info@email.com"
SenderEmail="yourmailbox@gmail.com" ' MUST be the same as "yourmailbox@gmail.com"
email.AuthMethod=email.AUTH_LOGIN
email.UseSSL = True
email.StartTLSMode = True
email.To.Add(EmailTo)
B4A Question Net Library - Using SMTP to send an email message. - rleiman    Oct 28, 2020 Greetings,
I'm experimenting with the Net library in an attempt to send an email message using SMTP with gmail as the email server. The message is not being sent. My logs show a "False" coming from the "Success" event. No errors are reported from the Try / Catch statement in the coding.
email.Init B4A Library [Class B4X ] YouTube V3 - MarcoRome (first post)    Jun 03, 2017   (2 reactions) Yes. You have email. B4A Question Google Play: targetSDK 33 Issue - Erel (first post)    Aug 21, 2023 That email should include a reference to any app that targets and older targetSdkVersion. It is not a generic email. B4A Question Send an email - JohnC (first post)    Oct 22, 2019   (3 reactions) Yes, there are three different methods:
1) Send an email using the user's own gmail account: https://www.b4x.com/android/forum/threads/b4x-sending-emails-with-gmail-rest-api.81736/#content
2) Send an email using SMTP: https://www.b4x.com/android/forum/threads/b4x-net-library-ftp-smtp-pop-with-wait- B4J Question Send un/styled email to Hotmail (B4Xemail Library) [SOLVED] - OliverA (first post)    Aug 09, 2021   (1 reaction) Note: With some email services (aol, yahoo) you have to generate a password that is application specific. You than use your user ID and the special password to email. Otherwise, emailing does not work B4A Question How to read emails from device accounts? - Erel (first post)    Jul 03, 2017 No. Emails are not part of Android OS. They are managed by the mail app.
The best you can do is to listen to notifications, though it requires a special permission. B4A Library Facebook - Extends FirebaseAuth to support Facebook - Erel (first post)    Jun 29, 2021 It is possible that Facebook no longer provides the email. Apple made a similar change last year.
What is the output of:
Log("SignedIn: " & User.DisplayName)
Log(User.Uid)
Log("Email: " & User.Email) Page: 1   2   3   4   5   6   7   Powered by ColBERT |