style: shorten email body divider line from 60 to 40 characters

This commit is contained in:
Paul Huliganga 2026-03-13 16:06:35 -04:00
parent 91ff48d6e0
commit 5b68f341ef
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ global with sharing class DocusignCompositeEnvelopeBuilder {
envelopeSubject = envelopeSubject.left(97) + '...'; envelopeSubject = envelopeSubject.left(97) + '...';
} }
// Compose body: greeting → template bodies separated by a visual divider → sign-off // Compose body: greeting → template bodies separated by a visual divider → sign-off
String DIVIDER = '\n\n' + '─'.repeat(60) + '\n\n'; String DIVIDER = '\n\n' + '─'.repeat(40) + '\n\n';
String GREETING = 'Hello,\n\n'; String GREETING = 'Hello,\n\n';
String SIGNOFF = '\n\nThank you,\nEarly Intervention Colorado'; String SIGNOFF = '\n\nThank you,\nEarly Intervention Colorado';
String envelopeBody; String envelopeBody;