How to send an email from Quest 3 standalone app?
Hello, I am using SmtpClient which works well in the Editor for sending an email with attachments from the app. I am logging in to a Gmail account with 2FA and app password. var smtpClient = new SmtpClient("smtp.gmail.com", 587) { Credentials = new NetworkCredential(senderEmail, senderPassword), EnableSsl = true, }; But when I build the app and run it on the device it won't work. I added a custom manifest with Android networking permissions. I have no idea what else could be blocking it, and if it can be easily solved. I know there are third party services but I prefer to go for the simple solution if possible. Sending an email from the app sound to me like a basic feature that should be simple. Anyone else encountered this problem?1.3KViews0likes4Comments