Hi,
I’m using this code to send an email in my App
local options = { to = "myname@somewhere.com", subject = "Subject Subject", isBodyHtml = true, body = "Text Text Text Text", } native.showPopup("mail", options)
The problem is when “My App” opens a popup window to choose which clint will send the email (Gmail, Outlook, or Yahoo Mail) and when I choose Yahoo Mail, Yahoo App opened but it didn’t get the receiver email (to: parameter). The receiver email is empty nothing in (to:). This problem is just in Yahoo Mail App but Gmail and Outlook Apps are ok.
Can anyone help me?