- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2025 06:43 AM
Hi All,
When the email body reaches the maximum size, the email was not sent out with the error message as "552 5.3.4 message size exceeds fixed maximum message size". So is there a way to add a popup about the size limit of email content when it exceeds the defined message size while sending the email from compose email option in ServiceNow.
Thanks!
Ramkumar
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2025 02:06 AM
you can show an alert when compose email opens that popup
check this KB for message you want to show
Email server size limit prevents emails from being sent or received
Create this new UI script
addLoadEvent(hideButtonsAdd);
function hideButtonsAdd() {
if (document.URL.indexOf('email_client.do') != -1) {
alert("Please don't exceed 10MB email size"); // give your message here
}
}
Output:
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2025 02:05 AM
Yes, you can make a display to always show an warning to keep minded about size of attachments but you cannot do validations onChange.
Regards,
Sumanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2025 01:07 AM
This is a platform OOTB limitation from ServiceNow.
Please inform customer about this and ask them to reduce the email body content.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2025 01:57 AM
Just want to popup an attention message while composing email from a case/incident.
The attention message holds the limitation details.
Is it possible from the UI action "Compose email" ?
Thanks!
Ramkumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2025 02:06 AM
you can show an alert when compose email opens that popup
check this KB for message you want to show
Email server size limit prevents emails from being sent or received
Create this new UI script
addLoadEvent(hideButtonsAdd);
function hideButtonsAdd() {
if (document.URL.indexOf('email_client.do') != -1) {
alert("Please don't exceed 10MB email size"); // give your message here
}
}
Output:
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2025 03:16 AM
How can I make this workable in workspace ?