diff --git a/client/src/helpers/misc/mailto.js b/client/src/helpers/misc/mailto.js index eb3a67b03b..79e407cee6 100644 --- a/client/src/helpers/misc/mailto.js +++ b/client/src/helpers/misc/mailto.js @@ -93,6 +93,10 @@ class MailtoHelper { if (attributes.isHtml) { params.body = this.htmlToPlain(params.body); } + + if (params.body.length > 700) { + params.body = params.body.substring(0, 700) + '...'; + } } if (attributes.inReplyTo) {