Android Question Weird problem sending mail

imbault

Well-Known Member
Licensed User
Longtime User
Till now, I'd no problem

Using
B4X:
    Dim message As Email
    Dim cBody As String

        message.To.Add(Main.mail_sendpi)
        message.Subject="Demande d'accès Smile"
        cBody =  "Utilisateur : "& EditLogin.text & CRLF &  "DeviceId : " & Main.SmileLogon.deviceid & CRLF & CRLF
        cBody = cBody & "Site de travail (Laboratoire ou nom de l'agence Mesure) : "
        message.Body =  cBody
        StartActivity(message.GetIntent)

But this day the StartActivity(message.GetIntent) show me the screen:


upload_2017-9-11_14-20-11.png
 
Top