Hey everyone,
I’ve just been trying to get HTML emails working on my iPhone for a new app I’m making, and no matter what i just can’t seem to get the HTML to work… Even using Jonathans example in his blog post it still shows the HTML tags and doesn’t actually do the HTML. Below is the example he showed:
local options =
{
to = { "john.doe@somewhere.com", "jane.doe@somewhere.com" },
cc = { "john.smith@somewhere.com", "jane.smith@somewhere.com" },
subject = "My High Score",
isBodyHtml = true,
body = "[html]I scored over **9000**!!! Can you do better?[/html]",
attachment =
{
{ baseDir=system.DocumentsDirectory, filename="Screenshot.png", type="image" },
{ baseDir=system.ResourceDirectory, filename="MyLogo.png", type="image" },
},
}
native.showPopup("mail", options)
Now if i use that exact code in my app, the email will just pop up with: “[html]I scored over 9000!!! Can you do better?[/html]”, and it is not formatted in HTML at all. I was hoping to use HTML to create some tables etc in the email so i could plug information into them, but it really isn’t off to a good start…
Anyone else had much luck using HTML emails?
Or does anybody know something that I’m being stupid and missing? 
Thanks for any help,
Jamie
[import]uid: 69826 topic_id: 25498 reply_id: 325498[/import]