ll.GetNextEmail

ll.GetNextEmail(Address: string, Subject: string) : ()

Fetch the next queued email with that matches the given address and/or subject, via the email event. If the parameters are blank, they are not used for filtering.

Example

ll.GetNextEmail('test', 'test')
{
  "def": "func",
  "desc": "Fetch the next queued email with that matches the given address and/or subject, via the email event.\nIf the parameters are blank, they are not used for filtering.",
  "energy": 10,
  "sleep": 0,
  "pure": false,
  "link": "https://wiki.secondlife.com/wiki/LlGetNextEmail",
  "name": "GetNextEmail",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "()"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Address",
          "desc": "",
          "type": [
            "string"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Subject",
          "desc": "",
          "type": [
            "string"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll