I’m having trouble getting hyperlinks to work. My email options passed to the native.showPopup function are as follows:
emailOptions = { subject = "My App", isBodyHtml = true, body = [[\<html\>\<body\> Check out my cool stuff \<a href="]]..myCoolStuffUrl..[["\> here. \</a\>\</body\>\</html\>]], attachment = { baseDir=system.ResourceDirectory, filename = "Icon@2x.png", type="image" }, }
The myCoolStuffUrl variable will be a string which contains the url with some params that will show some custom data when they go to our webpage, so I can’t use a fixed string value.
However when I receive the email I just see this:
Check out my cool stuff here.
and there is no hyperlink.
Have I missed something obvious?
Edit: it still doesn’t work even if I hardcode the value to:
body = [[\<html\>\<body\> Check out my cool stuff \<a href="http://www.google.com"\> here. \</a\>\</body\>\</html\>]],