Difference between revisions of "Talk:LlEmail"

From Second Life Wiki
Jump to navigation Jump to search
m (Header Removal in Messages sent Via llEmail)
 
 
(5 intermediate revisions by 5 users not shown)
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.


Line 17: Line 22:
   }
   }
  }
  }
Originally added by [http://www.lslwiki.org/index.php?title=PrioSerpentine&action=edit Prio] @ http://www.lslwiki.org/index.php/LlEmail


--[[User:Lucius Obviate|Lucius Obviate]] 05:35, 20 May 2007 (PDT)
--[[User:Lucius Obviate|Lucius Obviate]] 05:35, 20 May 2007 (PDT)
== What if the target region is down? ==
This page should probably say what happens if the target region is down. 
If anyone knows, that is.  :)  [[User:Dale Innis|Dale Innis]] 18:41, 4 August 2010 (UTC)
== SVC-23 ==
Does anyone know if this bug is still relevant? --[[User:Kuraiko Yoshikawa|Kuraiko Yoshikawa]] 21:19, 8 July 2012 (PDT)
:It's probably not relevant but I don't want to remove it since it wasn't properly resolved. I will devalue it however. -- '''[[User:Strife_Onizuka|Strife]]''' <sup><small>([[User talk:Strife_Onizuka|talk]]|[[Special:Contributions/Strife_Onizuka|contribs]])</small></sup> 21:50, 8 July 2012 (PDT)
:: Okay, thanks Strife :) --[[User:Kuraiko Yoshikawa|Kuraiko Yoshikawa]] 12:03, 9 July 2012 (PDT)

Latest revision as of 12:03, 9 July 2012

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)

What if the target region is down?

This page should probably say what happens if the target region is down.

If anyone knows, that is.  :) Dale Innis 18:41, 4 August 2010 (UTC)

SVC-23

Does anyone know if this bug is still relevant? --Kuraiko Yoshikawa 21:19, 8 July 2012 (PDT)

It's probably not relevant but I don't want to remove it since it wasn't properly resolved. I will devalue it however. -- Strife (talk|contribs) 21:50, 8 July 2012 (PDT)
Okay, thanks Strife :) --Kuraiko Yoshikawa 12:03, 9 July 2012 (PDT)