style: visually separate template bodies with '\n\n---\n\n' divider in email body

This commit is contained in:
Paul Huliganga 2026-02-25 23:59:54 -05:00
parent 03a8f48e8d
commit 85677a3ff1
1 changed files with 1 additions and 1 deletions

View File

@ -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