Compare commits

...
Author SHA1 Message Date
Muhsin Keloth b2620dffe6 chore: increase email character length to 50,000 2024-09-06 13:46:27 +05:30
2 changed files with 4 additions and 0 deletions
@@ -237,6 +237,9 @@ export default {
if (this.isASmsInbox) {
return MESSAGE_MAX_LENGTH.TWILIO_SMS;
}
if (this.isAnEmailChannel) {
return MESSAGE_MAX_LENGTH.EMAIL;
}
return MESSAGE_MAX_LENGTH.GENERAL;
},
showFileUpload() {
@@ -7,4 +7,5 @@ export const MESSAGE_MAX_LENGTH = {
FACEBOOK: 1000,
TWILIO_SMS: 320,
TWILIO_WHATSAPP: 1600,
EMAIL: 50000,
};