style: visually separate template bodies with '\n\n---\n\n' divider in email body
This commit is contained in:
parent
03a8f48e8d
commit
85677a3ff1
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue