---
url: 'https://simonerescio.it/en/2014/08/self-sending-hundreds-emails-to-check-newsletter-in-outlook-word-is-faster'
title: Self sending hundreds emails to check newsletter in Outlook? Word is faster
author:
  name: Simone Rescio
  url: 'https://simonerescio.it/en/about-me/'
date: '2014-08-18T20:30:42+02:00'
modified: '2026-04-21T01:04:02+02:00'
type: post
summary: 'How to validate HTML newsletter markup in Word instead of flooding Outlook with test messages: shared Word/Outlook rendering, Gmail inline CSS, mobile testing pitfalls, and CSS support references.'
categories:
  - WebTech
tags:
  - CSS
  - email
  - Gmail
  - HTML
  - newsletter
  - Outlook
  - Word
image: 'https://simonerescio.it/wp-content/uploads/2014/08/20140603_105628.jpg'
published: true
---

# Self sending hundreds emails to check newsletter in Outlook? Word is faster

It’s hard to find information about HTML emails development workflow, for sure they are not a new trendy thing that attracts developers attention, instead they stopped at a technology standard that predates IE6.

But **newsletter emails** are still nowadays the best *direct marketing* instrument to retain visitors, so it is valuable to know some hard facts before diving into templates development :

[http://blog.pepa.info/php-html-css/html-e-mail/absolute-positioning-outlook-2007/](http://blog.pepa.info/php-html-css/html-e-mail/absolute-positioning-outlook-2007/)

This article by **Petr ‘PePa’ Pavel **provides precious suggestions to handle better the development workflow for HTML/CSS email that are compatible with Outlook, some key points :

- Outlook and Word share the same HTML/CSS web rendering engine.

- Word can open the web URL using ctrl/cmd+O.

- Using a URL that prints an HTML page populated with dummy data it’s possible to check the markup behavior in Word without self sending many emails to check in Outlook.

- Even if Outlook/Word do support CSS selectors, Gmail ignores any style not declared inline as it doesn’t support the `<style>` tag, so it’s necessary to somehow organize styles with the variables of the language we’re writing the template with.

To check the (terrible) CSS support across the most used mail clients the best resource is [campaignmonitor.com](https://www.campaignmonitor.com/css/).

For more on **CSS table** layout when tables are still the right tool, see [CSS table, basic structure for a typical mobile app layout](https://simonerescio.it/en/2014/06/css-table-structure-typical-mobile-app-layout); on `inline-block` behavior and the 4px gap, see [4px ghost space with CSS display inline-block](https://simonerescio.it/en/2014/05/4px-ghost-space-with-css-display-inline-block).

Other things I noticed while developing templates for emails first hand :

It is important to pay attention to which version of Outlook we are using and on which operating system, it turns out that the bugs we can find on Windows can change a lot between 2007 and 2010 versions.

Moreover the 2011 version for OSX has an overall more advanced CSS support than the Windows version, almost similar to Chrome browser, meaning that it is not the best choice to test with it in the early stages, and the same applies to OSX Word 2011 as it shares the same rendering engine of Outlook, as previously stated. The best choice seems to test on Windows 7/8 starting with Word/Outlook **2007**.

To test on mobile it is important to **never forward** the emails from a different mailbox. Every client tends to slightly modify the original HTML while adding information about the message such as date, sender and addressee. This way there is the risk of spotting layout errors that wouldn’t be present if the email is received directly in the mailbox configured on the device’s client.

 [](https://mastodon.social/share?text=https%3A%2F%2Fsresc.io%2F8R&title=Self%20sending%20hundreds%20emails%20to%20check%20newsletter%20in%20Outlook%3F%20Word%20is%20faster)[](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fsresc.io%2F8R)[](https://simonerescio.it/en/2014/08/self-sending-hundreds-emails-to-check-newsletter-in-outlook-word-is-faster)[](https://reddit.com/submit?url=https%3A%2F%2Fsresc.io%2F8R&title=Self%20sending%20hundreds%20emails%20to%20check%20newsletter%20in%20Outlook%3F%20Word%20is%20faster)[](https://api.whatsapp.com/send?text=Self%20sending%20hundreds%20emails%20to%20check%20newsletter%20in%20Outlook%3F%20Word%20is%20faster https%3A%2F%2Fsresc.io%2F8R)[](https://bsky.app/intent/compose?text=Self%20sending%20hundreds%20emails%20to%20check%20newsletter%20in%20Outlook%3F%20Word%20is%20faster%20https%3A%2F%2Fsresc.io%2F8R)[](https://telegram.me/share/url?url=https%3A%2F%2Fsresc.io%2F8R&text=Self%20sending%20hundreds%20emails%20to%20check%20newsletter%20in%20Outlook%3F%20Word%20is%20faster)[](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fsresc.io%2F8R)

