system.openURL()

Type Function
Library system.*
Return value Boolean
Revision Release 2024.3703
Keywords system, openURL, URL
See also system.canOpenURL()

Overview

Open a web page in the browser, create an email, or dial a phone number. Executing this function will close the app and switch to the built-in browser, email, or phone app.

You can check whether a URL can be opened via the system.canOpenURL() function.

Syntax

system.openURL( url )
url (required)

String. One of the following:

  • Email address — "mailto:[email protected]", optionally including URL-encoded subject and body parameters, for example:
    "mailto:[email protected]?subject=Hi%20there&body=I%20just%20wanted%20to%20say%2C%20Hi!"
  • Phone number — "tel:123-456-7890"
  • Web link — "https://solar2d.com/"

Gotchas

On Android, if dialing a phone number, you must add the CALL_PHONE permission to the build.settings file.

settings =
{
    android =
    {
        usesPermissions =
        {
            "android.permission.CALL_PHONE",
        },
    },
}

Examples

Open Web Page in Device Browser
system.openURL( "https://solar2d.com/" )
Send Email via Device Mail Application
system.openURL( "mailto:[email protected]" )
Dial a Phone Number
system.openURL( "tel:123-456-7890" )