Business Email Length: Subject Line and Body Best Practices
The length of a business email directly affects whether it gets read and acted upon. Too long, and recipients skim or defer it. Too short, and you may come across as curt or unclear. Like writing effective Slack messages, being mindful of character count helps you communicate with precision. This article covers the technical underpinnings of email, client-specific display behavior, and evidence-based guidelines for character count design.
Email Technical Specifications and Character Count
RFC 5321 (SMTP) limits each line to 998 octets (bytes). Because non-ASCII text is MIME-encoded, the visible character count and actual data size diverge. For example, a single UTF-8 CJK character consumes 3 bytes, and Base64 encoding inflates that by roughly 1.37x - so 1,000 Japanese characters produce about 4.1 KB of data. RFC 5322 imposes no explicit character limit on the Subject header, but as noted in our newsletter writing guide, the recipient's client display width is the practical constraint.
Encoding Methods and Actual Data Size
Email subject lines and body text undergo encoding that changes their data size. The same text can vary significantly in size depending on the encoding method - an important consideration when dealing with mail server size limits or header length restrictions.
| Encoding Method | Per CJK Character | 20-Char Subject | Primary Use |
|---|---|---|---|
| ISO-2022-JP (Base64) | ~2.7 bytes | ~76 bytes | Japanese business email |
| UTF-8 (Base64) | ~4.1 bytes | ~112 bytes | International email, Gmail |
| UTF-8 (Quoted-Printable) | ~9 bytes | ~180 bytes | Some email clients |
Subject headers are encoded using RFC 2047 MIME encoded-word format (=?charset?encoding?encoded-text?=). With ISO-2022-JP + Base64, a 4-character Japanese subject expands to roughly 45 bytes. UTF-8 + Base64 produces about 50 bytes for the same text. As subject lines grow longer, this difference accumulates, and line folding (CRLF + space) is inserted every 76 bytes, further inflating the total header size.
In practice, some older mail servers and gateways truncate or garble Subject headers exceeding 998 bytes. With UTF-8 + Quoted-Printable, a 50-character non-ASCII subject can reach approximately 450 bytes, so keeping subjects under 50 characters is technically sound as well as practically effective.
Optimal Subject Line Length
For English-language emails, 30–50 characters is the ideal subject line range. Display capacity varies across clients and devices:
| Client / Device | Subject Display | Preview Text |
|---|---|---|
| Outlook Desktop | ~60–80 characters | Hidden (can be enabled) |
| Gmail (Desktop) | ~70–100 characters | Shown in gray after subject |
| Apple Mail (Desktop) | ~80–120 characters | Displayed on second line |
| iPhone (Portrait) | ~30–40 characters | 1–2 lines below subject |
| Android Gmail | ~35–45 characters | Shown to the right of subject |
| Apple Watch | ~20–30 characters | None |
As with push notification character limits, placing the most important keywords within the first 30 characters of your subject line is critical.
Why 30–50 characters? Desktop clients can display 60+ characters, but smartphones show only 30–45. Keeping your subject within 30–50 characters ensures the full text appears on desktop while the core message remains visible on mobile - the "greatest common denominator" length. With mobile email usage continuing to rise, this range is increasingly important.
Subject line length correlates clearly with open rates. Email marketing analysis reveals the following trends:
| Subject Length | Open Rate Trend | Primary Factor |
|---|---|---|
| Under 20 characters | Low | Too vague to motivate opening |
| 20–29 characters | Moderate | Concise but may lack detail |
| 30–50 characters | Highest | Clear purpose, visible on mobile |
| 51–70 characters | Slightly lower | Begins to truncate on mobile |
| Over 70 characters | Low | Heavily truncated, intent unclear |
The 30–50 character range achieves the highest open rates because it represents the shortest length that clearly conveys the email's purpose.
Preview Text Optimization
Gmail and iPhone mail apps display the opening portion of the email body as "preview text" after the subject line. This area spans roughly 40–90 characters and represents a valuable opportunity to supplement the subject line with key information.
Many business emails begin with a greeting like "Hi [Name], I hope this email finds you well." - which means the preview text shows pleasantries rather than substance. By placing your conclusion or key point in the very first sentence, you can convey the full picture within the combined 70–140 characters of subject + preview text.
For HTML emails, a common technique is to set hidden preheader text using <div style="display:none; max-height:0; overflow:hidden;">. This lets you control the preview text independently of the visible body. However, you must insert enough invisible whitespace characters (‌ repeated) after the preheader - otherwise, the visible body text will appear appended to the preheader in the preview.
Preview text display length varies by client. Gmail (desktop) shows more preview text when the subject is shorter, sometimes exceeding 100 characters. iPhone in portrait mode limits it to about 40–60 characters. To work effectively across all clients, place the most critical information within the first 40 characters of your preview text.
Body Length Guidelines
Optimal body length varies by email type. The following guidelines balance response rate and read-through rate:
| Email Type | Word Count | Response Rate |
|---|---|---|
| Quick confirmations | 50–100 words | High (immediate replies) |
| Requests and reports | 100–200 words | High |
| Proposals and explanations | 200–300 words | Moderate |
| Detailed reports | 300+ words | Low (attachment recommended) |
Body length and response rate are clearly correlated. Emails of 100–200 words achieve the highest response rates, while those exceeding 300 words see a notable decline. This stems from cognitive load - working memory can only process a limited amount of information at once, and longer emails make it harder for recipients to identify the required action.
Optimal Length by Email Category
Business emails, marketing emails, and transactional emails have fundamentally different length requirements.
| Email Category | Subject | Body | Design Focus |
|---|---|---|---|
| Internal business | 30–40 chars | 50–200 words | Convey the point quickly |
| External business | 35–50 chars | 100–300 words | Balance courtesy and brevity |
| Marketing email | 30–45 chars | 100–250 words | Short path to CTA |
| Transactional email | 35–55 chars | 50–150 words | Complete info, concisely |
| Newsletter (plain text) | 35–50 chars | 200–500 words | Minimize scrolling |
| Newsletter (HTML) | 35–50 chars | 100–300 words | Balance images and text |
What Happens When You Get the Length Wrong
Email length missteps can erode professional trust. Here are common patterns to avoid:
- Subject line says only "Hi" or "Hello" - recipients can't gauge priority without knowing the topic. Executives processing dozens of emails tend to deprioritize messages with vague subjects. In the worst case, it gets flagged as spam.
- Body exceeds 500 words - requires extensive scrolling and buries key information. Emails over 300 words show declining response rates. For lengthy content, put the essentials in the body and attach the details.
- Body is under 10 words - "Got it" or "Understood" may seem efficient, but it can feel dismissive to clients or senior colleagues. A brief additional line makes a significant difference in tone.
- Subject-body mismatch - a subject reading "Please Confirm" paired with a body that only reports information without listing any confirmation items causes confusion and delays action.
HTML vs. Plain Text Email Size
The same content in HTML format versus plain text can differ dramatically in data size. HTML emails include markup tags, CSS, and image references, often resulting in 3–10x the data volume of plain text.
A practical consideration: in HTML emails, the visible character count and source code character count diverge. For example, "bold text" appears as 9 characters on screen but is <strong>bold text</strong> - 30 characters in the HTML source. When managing character counts for marketing emails, judge by the displayed text, not the source.
Additionally, multipart/alternative emails that include both HTML and plain text versions nearly double the data volume. Given mail server size limits (typically 25–50 MB in corporate environments), keeping HTML email body copy concise is essential.
4 Tips for Emails That Get Read
- Make the subject line specific. Avoid vague subjects like "Quick Question." Use "[Action Required] Q3 Project Progress Report" instead. Adding a category tag in brackets at the start helps recipients instantly assess priority.
- Lead with the conclusion. Busy recipients need the key point immediately - don't bury it in the third paragraph. Ideally, the first two lines should state what you need and when you need it.
- Keep paragraphs to 2–3 sentences. Long blocks of text get skipped, especially on mobile where a 3-line desktop paragraph wraps to 6–7 lines. For tips on professional writing, check out find phimosis correction devices on Amazon.
- Use bullet points for multiple items. Lists are scanned 2–3x faster than prose paragraphs.
Pro Email Techniques
Professionals who handle dozens of emails daily rely on these strategies:
- Aim for "subject-line-complete" emails. A subject like "[Update] Client A meeting moved to 3/10 2 PM" conveys the full message without the recipient even opening the email - the ultimate time-saver.
- Apply the BLUF principle (Bottom Line Up Front). This military-origin technique puts the conclusion first, followed by context: "Request: Please approve the Q3 budget. Reason: Deadline is Friday." Busy readers grasp the point in two lines.
- Follow the "5-sentence rule." Targeting five sentences or fewer naturally produces concise, focused emails. If you can't fit it in five sentences, consider a phone call or meeting instead.
- Minimize quoting in replies. Full-text quoting just adds scrolling. Quote only the relevant portion and write your response directly below it.
Commonly Overlooked Edge Cases
When thinking about email character count, you need to manage more than just the body text:
- Signature length: Signatures typically run 3–5 lines (50–100 characters), but adding department, title, phone, and URL can push them past 200 characters. Even a 100-word body feels long when the signature adds another 150 characters. Keep signatures minimal.
- CC/BCC and header size: Adding many addresses to CC inflates the email header. RFC 5321 limits each command to 512 octets, and excessive CC recipients can cause delivery failures. For 10+ recipients, consider using a mailing list.
- Attachment filename length: Long filenames with non-ASCII characters expand under MIME encoding and may be truncated by some mail servers. Keep attachment filenames under 50 characters for safety.
- Reply quote accumulation: Multi-round email threads can accumulate tens of thousands of characters in quoted text. Some mail servers enforce a 10 MB per-message limit, and quote accumulation alone can trigger delivery errors.
Emoji in Subject Lines: Encoding Pitfalls
Using emoji in subject lines to stand out has become common in marketing emails, but there are technical pitfalls. Emoji are represented using Unicode surrogate pairs or combining character sequences, making them larger than regular characters when encoded.
For example, "🎉" (party popper) consumes 4 bytes in UTF-8 and roughly 8 bytes after Base64 encoding. Skin-tone modified emoji (e.g., 👋🏻) consist of a base emoji + ZWJ (Zero Width Joiner) + modifier, reaching 8–12 bytes for a single visible character. Flag emoji (e.g., 🇺🇸) use Regional Indicator Symbol pairs and also consume 8 bytes.
The issue goes beyond size. ISO-2022-JP cannot represent emoji, so subject lines containing emoji are forced into UTF-8 encoding. If the recipient's mail client expects ISO-2022-JP, the subject may display as garbled text. Older versions of Outlook (2013 and earlier) and some carrier email services may replace emoji with "□" or "?". For business emails, avoid emoji entirely. For marketing emails, consider your audience's email environment before using them.
Client-Specific Display Behavior
The same email renders differently across clients. Gmail displays preview text in gray after the subject - the shorter the subject, the more preview space is available. Outlook desktop hides preview text by default, so recipients judge emails by subject alone. Apple Mail supports two-line display, showing 100+ characters across subject and preview combined. Given these differences, a subject of 30–50 characters paired with a strong opening sentence works as the optimal strategy across all clients.
Email Newsletter Length
For email newsletters, plain-text format works best at 200–500 words, while HTML newsletters should target 100–300 words of copy. Keep the layout concise to minimize scrolling and prevent post-open abandonment.
The "Golden Hour" and Email Length
Email open rates peak between 8–10 AM on weekdays, when people process a large batch of messages quickly with shorter reading time per email. Emails sent between 2–4 PM tend to be read more carefully. This suggests a practical strategy: keep morning emails shorter (50–75 words) and afternoon emails slightly more detailed (100–150 words).
Conclusion
Effective email communication balances brevity with clarity. Keep subject lines within 30–50 characters, and adjust body length to match the email's purpose. Understanding encoding differences, client-specific display behavior, and preview text optimization lets you design emails that work reliably across every environment. Paying attention to details like emoji encoding and preheader text can improve both open rates and response rates. For more strategies, explore browse hair removal devices on Amazon. Use Character Counter to check your email length before sending.