LlGetNextEmail
From Second Life Wiki
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Contents |
Description
Function: llGetNextEmail( string address, string subject );| 120 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Get the next waiting email with appropriate address and/or subject (if blank they are ignored)
| • string | address | |||
| • string | subject |
Examples
default { state_entry() { llSetTimerEvent(1); //Don't go much lower than this... } timer() { llGetNextEmail("", ""); //Check for emails } email(string time, string address, string subj, string message, integer num_left) { llOwnerSay("I got an email: " + subj + "\n" + message); } }

