Difference between revisions of "Talk:LlEmail"

From Second Life Wiki
Jump to navigation Jump to search
m (Credited orginal resident.)
(Suggestion)
Line 1: Line 1:
I suggest removing the text at the end (starting with "Feature Design Document")
-- Catherine Pfeffer (2008-05-03)
It's note-worthy to add that the following line of code can be used in the email event to remove headers from the message.
It's note-worthy to add that the following line of code can be used in the email event to remove headers from the message.



Revision as of 08:18, 3 May 2008

I suggest removing the text at the end (starting with "Feature Design Document")

-- Catherine Pfeffer (2008-05-03)

It's note-worthy to add that the following line of code can be used in the email event to remove headers from the message.

message = llDeleteSubString(message, 0, llSubStringIndex(message, "\n\n") + 1);

Example:


default
{
 state_entry()
  {
   email(string time, string address, string subj, string message, integer num_left)
    {
     message = llDeleteSubString(message, 0, llSubStringIndex(message, "\n\n") + 1);
     llSay(0,message);
    }
  }
}


Originally added by Prio @ http://www.lslwiki.org/index.php/LlEmail

--Lucius Obviate 05:35, 20 May 2007 (PDT)