From 30e8ec416e83efb02782722405862409dfbe2e69 Mon Sep 17 00:00:00 2001
From: Martin Groppe <m.groppe@adito.de>
Date: Fri, 30 Apr 2021 07:50:53 +0000
Subject: [PATCH] [Projekt: xRM-Marketing][TicketNr.: 1079839][Fehler:
 Inkonsistentes Verhalten bei Platzhalterersetzung]

---
 process/DocumentTemplate_lib/process.js | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/process/DocumentTemplate_lib/process.js b/process/DocumentTemplate_lib/process.js
index 5fef12bb28..3cebbc9b90 100644
--- a/process/DocumentTemplate_lib/process.js
+++ b/process/DocumentTemplate_lib/process.js
@@ -65,10 +65,23 @@ DocumentTemplate.prototype.toString = function (pWithSubtemplates)
     if (this._stringCache[stringCachePosition] == null)
     {
         var content = pWithSubtemplates && this._subtemplateResolvedContent || this.content;
-        if (this.type == DocumentTemplate.types.PLAIN)
-            this._stringCache[stringCachePosition] = content;
-        else
-            this._stringCache[stringCachePosition] = text.parseDocument(content);
+        switch(this.type)
+        {
+            case DocumentTemplate.types.EML: //intended fallthrough 
+                if(this.options.onlyBody)
+                {
+                    var email = Email.fromRFC(content);
+                    content = util.encodeBase64String(email.body);
+                }  
+            case DocumentTemplate.types.HTML:
+                this._stringCache[stringCachePosition] = util.decodeBase64String(content);
+                break;
+            case DocumentTemplate.types.PLAIN:
+                this._stringCache[stringCachePosition] = content;
+                break;
+            default:
+                this._stringCache[stringCachePosition] = text.parseDocument(content);
+        }
     }
     return this._stringCache[stringCachePosition];
 }
-- 
GitLab