llGetNextEmail

From Second Life Wiki
Revision as of 13:23, 15 October 2008 by Jody Palmer (talk | contribs)
Jump to navigation Jump to search

Summary

Function: llGetNextEmail( string address, string subject );

Get the next waiting email with appropriate sender address and/or subject (if blank they are ignored)

• string address
• string subject

Examples

<lsl> 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);
      
   }

}

</lsl>

See Also

Events

•  email

Functions

•  llEmail

Deep Notes

Search JIRA for related Issues

Signature

function void llGetNextEmail( string address, string subject );