Guest User

Untitled

a guest
Sep 22nd, 2017
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. var bodytextnew;
  2.  
  3. if (!connection.transaction.body) {
  4.  
  5. bodyText = "Text Body";
  6.  
  7. bodytextnew = "";
  8.  
  9. }
  10.  
  11. else if (connection.transaction.body.children.length > 0) {
  12. bodytextnew = "";
  13. for(i=0;i<connection.transaction.body.children.length;i++){
  14. bodytextnew1 = connection.transaction.body.children[i].bodytext;
  15. bodytextnew += bodytextnew1;
  16. //this.logwarn("BODYchild" + bodytextnew);
  17. }
  18. }
  19.  
  20. else {
  21.  
  22. bodytextnew = connection.transaction.body.body_text_encoded;
  23.  
  24. }
Add Comment
Please, Sign In to add comment