<div class="markdown">
<p>On 28 Dec 2012, at 21:33, Niels Kobschätzki wrote:</p>

<blockquote>
<p>is there any way to set up MailMate that I can not only have cmd+shift+d for sending messages but also cmd+enter (or is it return? *scratching my head)?</p>
</blockquote>

<p>This should work for the return key:</p>

<pre><code>&quot;@\U000D&quot; = &quot;send:&quot;;
</code></pre>

<p>A bug means that it won&#39;t work for the enter key (the numeric keypad), but in the next update this should work (previously, modifiers were ignored for this key):</p>

<pre><code>&quot;#@\U000D&quot; = &quot;send:&quot;;
</code></pre>

<p>When working with custom key bindings then <a href="http://www.hcs.harvard.edu/%7Ejrus/Site/Cocoa%20Text%20System.html">this resource</a> can be very helpful (in addition to the manual page).</p>

<p>For those interested the next update probably also includes <code>sendAndArchiveParent:</code> and the more general <code>sendAndMoveParentToMailbox:</code> which takes a mailbox argument. (The purpose of these are to automatically archive the replied message -- the parent of the sent message.)</p>

<hr>

<p>Benny</p>

</div>