Hi All,
I have been sending email using below code. I recently changed to B4A 10 and changed my mail server also.After that mails are not going.I checked mail client there everything is fine.
Mails are going.
I tried changing port no to 222, 25.
Can anyone give some clue.
Juzer
I have been sending email using below code. I recently changed to B4A 10 and changed my mail server also.After that mails are not going.I checked mail client there everything is fine.
Mails are going.
B4X:
Dim smtp1 As SMTP
smtp1.Initialize("mail.xxx.com",587,"user id","password","s")
smtp1.To.Add(recepient emailid)
smtp1.Subject="Subject line"
smtp1.Body="Dear User, xxxx"
smtp1.Sender="sender name"
smtp1.UseSSL=True
smtp1.StartTLSMode=True
smtp1.AuthMethod=smtp1.AUTH_LOGIN
smtp1.Send
I tried changing port no to 222, 25.
Can anyone give some clue.
Juzer