Hi Experts,
I am trying to send an email using the Net Library like this:
Now sometimes it works fine and other times I get a bounce back email sent to me with the following error:
Diagnostic-Code: smtp; 554 5.4.7 [internal] exceeded max time without delivery
Any idea why it works some of the time and not ALL the time??
Regards,
Jacques.
I am trying to send an email using the Net Library like this:
B4X:
Dim Mail As SMTP
Mail.Initialize(strSMTPServerAddress_, "25", strUserName_, strPassword_, "Email")
Mail.UseSSL = False
Mail.AuthMethod = Mail.AUTH_LOGIN
Mail.To.Add(strMailToAddress)
Mail.Subject = "test subject"
Mail.Body = "test message"
Mail.Sender = strSenderEmailAddress_
Mail.Send
Now sometimes it works fine and other times I get a bounce back email sent to me with the following error:
Diagnostic-Code: smtp; 554 5.4.7 [internal] exceeded max time without delivery
Any idea why it works some of the time and not ALL the time??
Regards,
Jacques.