Hello,
I have this code for b4a and it does not work for ios, it does not give any error message.
Does somebody knows why it could be?
I have this code for b4a and it does not work for ios, it does not give any error message.
Does somebody knows why it could be?
B4X:
'MANDAR MAIL REGISTRO
Dim mensaje As String
smtp.Initialize("smtp.miweb.com", 587, "[email protected]", "Sxxx", "SMTP")
smtp.UseSSL=True
smtp.StartTLSMode = True
smtp.Subject = "Prueba"
mensaje= observaciones.Text
smtp.Body = mensaje
smtp.Send
hd.ToastMessageShow("MAIL ENVIADO",True)