I’m trying to compose an email with html hyperlinks from inside my app.
On iOS (not surprisingly) it works just fine.
On Android there is no link but html tags are removed.
Please help.
[lua]local function shareLink()
local options =
{
subject = “Character Sheet”,
isBodyHtml = true,
body = “<html><body><p>I made you a character sheet in <a href = “http://www.legendofus.net/”>Legend of Us RPG Sidekick</a>!</p></body></html>”
}
native.showPopup( “mail”, options )
end[/lua]
On Android, it opens a window and gives me all of these options to send the email instead of just making an email. I don’t know if this is a symptom of it going horribly wrong or normal behavior. I am choosing the mail app.
Do I need to change any settings in my build.settings file to make this work?