<div class="markdown">
<p dir="auto">On 31 Mar 2015, at 9:41, Gary Hull wrote:</p>

<blockquote>
<p dir="auto">I really like the way that when you select multiple email messages, they are all displayed crammed together on the screen with a horizontal rule separating them.</p>

<p dir="auto">Unfortunately, when you choose Print, the messages, no matter how short they are, print on separate pages.</p>
</blockquote>

<p dir="auto">That was a feature requested by a user in the past :-)</p>

<blockquote>
<p dir="auto">Maybe this is a system thing beyond the reach of the app, but it would be nice to have the option of printing all the messages crammed together, to save paper and allow you to fit more (receipts, etc.) in a binder.</p>
</blockquote>

<p dir="auto">It's controlled by the CSS file used in MailMate for displaying messages. You can override the default by creating this file (and path):</p>

<pre><code>~/Library/Application\ Support/MailMate/Resources/MmMessagesWebView/stylesheet.css
</code></pre>

<p dir="auto">And use this as the content of the file:</p>

<pre><code>@media print {
    .messagedivider { page-break-after: avoid; }
}
</code></pre>

<p dir="auto">Then relaunch MailMate.</p>

<p dir="auto">-- <br>
Benny</p>

</div>