Skip to content

Instantly share code, notes, and snippets.

@boboboa32
Created October 11, 2012 14:30
Show Gist options
  • Save boboboa32/3872770 to your computer and use it in GitHub Desktop.
Save boboboa32/3872770 to your computer and use it in GitHub Desktop.
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><body>I scored over <b>9000</b>!!! Can you do better?</body></html>",
attachment =
{
{ baseDir=system.DocumentsDirectory, filename="Screenshot.png", type="image" },
{ baseDir=system.ResourceDirectory, filename="MyLogo.png", type="image" },
},
}
native.showPopup("mail", options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment