I want to send a series of emails from my database app using the following code snipplet:
Unfortunatly the loop doesn’t work properly. The order StartActivity(Message.GetIntent) only works once and the loop fails.
Is there another possibility to send emails as a series?
Thanks for any help.
:sign0163:
Werner
B4X:
Dim Message As Email
For i = 1 To Anzahl
Message.To.Add(“meine@Adresse.de”)
message.Subject = "Betreff”
message.Body = "Emailtext”
StartActivity(Message.GetIntent)
Next
Is there another possibility to send emails as a series?
Thanks for any help.
:sign0163:
Werner
Last edited by a moderator: