style: shorten email body divider line from 60 to 40 characters
This commit is contained in:
parent
91ff48d6e0
commit
5b68f341ef
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue