Hello everyone,
I wanted to address an issue I’ve encountered in Microsoft Outlook where text in emails gets automatically hyphenated. I believe many of you might have faced the same problem, especially when creating emails using drag-and-drop layouts. Once sent, the text appears hyphenated in the Outlook desktop app.
Here’s the solution that worked for me:
- Insert an HTML tag at the very beginning of your email and set the padding and margin to
0
. - Add the following HTML/CSS code inside an HTML block:
<style>
body * {
mso-hyphenate: none;
}
</style>
This should prevent text from being hyphenated. If you have other solutions, I’d love to hear them. Please feel free to share!