In MC65, SIM card is already inserted. Any web site can be browsed.
In my application, there is sending email feature using Rebex. Sometimes, it cannot send email. So I tried to browse IE and I'm beware if 3G connection signal appears, sending works properly.
Around connection signal on Screen, there is "H" symbol. What is it?
For my case, it's not good to switch 3G connection by browsing IE. how to handle it.
Does the Rebex Mail throw any exception when it's unable to send email? Error message might help to diagnose the problem.
Is it possible to create a SMTP communication log file and include part of it with error message? Following code shows how to do it:
Dim mailMessage As New MailMessage() 'todo: set mail message properties
Dim smtp As New Smtp
smtp.LogWriter = new Rebex.FileLogWriter("\temp\log.txt", Rebex.LogLevel.Debug)
smtp.Connect("smtp.example.org")
smtp.Send(mailMessage)
Edit: