diff --git a/composite-envelope-builder/force-app/main/default/classes/DocusignCompositeEnvelopeBuilder.cls b/composite-envelope-builder/force-app/main/default/classes/DocusignCompositeEnvelopeBuilder.cls index f009be2..920aed3 100644 --- a/composite-envelope-builder/force-app/main/default/classes/DocusignCompositeEnvelopeBuilder.cls +++ b/composite-envelope-builder/force-app/main/default/classes/DocusignCompositeEnvelopeBuilder.cls @@ -122,7 +122,7 @@ global with sharing class DocusignCompositeEnvelopeBuilder { } } String envelopeSubject = combinedName; - String envelopeBody = bodyParts.isEmpty() ? '' : String.join(bodyParts, '\n\n'); + String envelopeBody = bodyParts.isEmpty() ? '' : String.join(bodyParts, '\n\n---\n\n'); myEnvelope = myEnvelope.withEmail(envelopeSubject, envelopeBody); // Send the envelope