B4A Library New Net library - Android FTP, SMTP and POP3 - Erel    Oct 6, 2025   (24 reactions)   tags: FTP, ftp smtp pop3, Net, B4A, Email The Net library supports FTP, SMTP and POP3 protocols. This library replaces the FTP library. Both regular connections and SSL connections are supported.
SMTP - Allows to directly connect to SMTP... that there are no older copies in the internal libraries folder.
V1.83 - Fixes an issue with SMTP and IPv6 clients.
V1.80 - SMTP, POP and FTP can be configured to use a custom trust manager. This allows... B4A Tutorial [B4X] Net library (FTP, SMTP, POP) with Wait For - Erel    Feb 14, 2021   (16 reactions)   tags: FTP, SMTP, POP.Net, B4X Net ftp smtp pop wait -net-library-android-ftp-smtp-and-pop3.10892/#content Note that B4J and B4A libraries are identical.... B4J Code Snippet [B4X] Solving encoding issues with html mails sent with SMTP (Net library) - Erel    Mar 14, 2021   (12 reactions) Encoding the html text with base64 avoids encoding issues, especially with MS Outlook. This code is compatible with B4A and B4J: Dim su As StringUtils smtp.Body = su.EncodeBase64(html.GetBytes("utf8")) 'html = the html body smtp.AdditionalHeaders.Put("Content-Transfer-Encoding", "BASE64") Note that it will not work with messages with attachments.... 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.Initialize("smtp.gmail.com", 587, "[email protected]"... that they said to use. Outgoing Mail (SMTP) Server smtp.gmail.com Requires SSL: Yes Requires TLS: Yes... B4A Code Snippet [B4X] SMTP Errors - yiankos1    Jun 27, 2024   (2 reactions) Hello team, I have lost three days in order to find out how SMTP library works with SMTP services(smtp2go, Sendpulse etc...) without errors about RCPT and more.... Private SMTP As SMTP SMTP.Initialize("mail.smtp2go.com",587,"username","password","SMTP") SMTP.Subject = "Subject" SMTP.Body = "Body" SMTP.To.add("[email protected]") SMTP.MailFrom="[email protected]" 'DO NOT FORGET TO ADD YOUR DOMAIN SENDER... B4A Question SMTP auth trouble: 503 or 530 error (auth) - peacemaker    Dec 10, 2017 Hi, All Suddently B4A projects with SMTP usage stopped to work - servers return 503 like errors... always used SMTP1.UseSSL = True with port 465, it was OK. Now: 1) gmail.com: java.lang... authorization. Also tried: SMTP1.Initialize(SMTPserver,SMTPport,SMTPlogin,SMTPpass,"SMTP1") SMTP1.AuthMethod = SMTP1.AUTH_LOGIN SMTP1.UseSSL = SMTPssl 'here always True SMTP1.StartTLSMode = True Here is GMAIL sending error after timout: org.apache.commons.net.smtp... B4i Question SMTP not sending email - mcqueccu    Aug 3, 2021 I am having problem sending email with SMTP. Same code and Credentials work well in B4A and... As NavigationController Private Page1 As Page Private xui As XUI Dim smtpServer As String = "smtp.gmail.com" Dim smtpPort As Int = 587 Dim smtpUserEmail As String = "[email protected]" Dim smtpUserPassword As String = "xxxxxxx" Dim receipientEmail...) Dim smtp As SMTP smtp.Initialize(smtpServer, smtpPort,smtpUserEmail, smtpUserPassword... B4A Question SMTP Client via IPv6 - Blueforcer    Oct 1, 2025 Im using a android 7 device and the network SMTP lib to send emails with a public email server...:9dfc:xxXX
The problem is apparently that the mail client is sending an invalid SMTP EHLO command... B4J Question How to send email via smtp.libero.it ? - amorosik    Dec 29, 2024 I'm try to send email with smtp.libero.it server with superbasic code
Obviously the username and password are fictitious
B4J 10.0
JNET library 1.81
Dim smtp As SMTP
smtp.Initialize... B4J Question smtp.gmail.com - Harris    Mar 3, 2020   (1 reaction) Error: java.lang.RuntimeException: Empty writer returned: 530-5.7.0 Authentication Required. Learn more at 530 5.7.0 https://support.google.com/mail/?p=WantAuthError x16sm6245133qki.89 - gsmtp After many days trying to use "Private smtp As SMTP" in my server app (which used to work just fine), I finally solved the issue stated above... CHANGE (RESET) YOUR GMAIL PASSWORD! Unusual sign-in location detected Why you must complete an additional step to sign in We've detected... Page: 1   2   3   4   5   6   7   |