<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body><div style="font-family: sans-serif;"><div class="markdown" style="white-space: normal;">
<p dir="auto">You could use KeyboardMaestro and emate. Here’s what I have done:</p>
<p dir="auto">I have templates for that which I access via the Commands menu. Here’s an example:</p>
<p dir="auto">• mkdir ~/Library/Application Support/MailMate/Bundles/Templates.mmBundle<br>
• mkdir ~/Library/Application Support/MailMate/Bundles/Templates.mmBundle/Commands<br>
• mkdir -p ~/Library/Application Support/MailMate/Bundles/Templates.mmBundle/Support/bin</p>
<p dir="auto">Create an Info.plist file in Templates.mmBundle like this:</p>
<p dir="auto">{ "contactEmailRot13" = "xxx";<br>
contactName = "YOUR NAME";<br>
description = "...";<br>
name = "Templates";<br>
uuid = "9341B0CD-B0CE-4C88-A4B5-F46DD9AAAAAA";<br>
}</p>
<p dir="auto">Create an .mmcommand file in Commands, e.g.</p>
<p dir="auto">{ name = "Listmaster";<br>
uuid = "3A610C0F-C6EE-4C2E-BA93-516CF91251B9";<br>
input = "none"; // Options are: none, raw, decoded, canonical, html, selection, formatted<br>
output = "actions"; // Options are: discard, actions<br>
executionMode = "noMessages"; // Options are: noMessages, singleMessage, multipleMessages<br>
command = '#!/bin/bash\n"${MM_BUNDLE_SUPPORT}/bin/listmaster"\n';<br>
}</p>
<p dir="auto">Create the script that’s executed as command in Support/bin:</p>
<p dir="auto">#!/bin/bash</p>
<p dir="auto">ACTION=<code style="margin: 0 0; padding: 0 0.25em; border-radius: 3px; background-color: #F7F7F7;">defaults read com.freron.MailMate MmMailManCommandAction 2>/dev/null</code><br>
if [ -z "${ACTION}" ]; then<br>
ACTION="openMessage"<br>
fi</p>
<p dir="auto">cat << END<br>
{ actions = (<br>
{<br>
type = createMessage;<br>
headers = {<br>
"from" = "Sebastian Hagedorn <a href="mailto:Hagedorn@uni-koeln.de" style="color: #3983C4;">Hagedorn@uni-koeln.de</a>";<br>
"cc" = "Listmaster Uni Köln <a href="mailto:listmaster@uni-koeln.de" style="color: #3983C4;">listmaster@uni-koeln.de</a>";<br>
"reply-to" = "Listmaster Uni Köln <a href="mailto:listmaster@uni-koeln.de" style="color: #3983C4;">listmaster@uni-koeln.de</a>";<br>
"#signature" = "Sebastian Hagedorn (Listmaster)";<br>
};<br>
resultActions = (<br>
{<br>
type = "${ACTION}";<br>
}<br>
);<br>
body = "Sehr geehrte";<br>
}<br>
);<br>
}<br>
END</p>
<p dir="auto">Cheers,<br>
Sebastian</p>
<p dir="auto">--<br>
.:.Sebastian Hagedorn - Weyertal 121 (Gebäude 133), Zimmer 2.13.:.<br>
.:.IT Center University of Cologne (ITCC).:.<br>
.:.Universität zu Köln / Cologne University - ✆ +49-221-470-89578.:.<br>
.:. SIP: <a href="mailto:a0620@unikoeln.calls.webex.com" style="color: #3983C4;">a0620@unikoeln.calls.webex.com</a> .:.</p>
<p dir="auto">On 17 Jun 2026, at 20:42, Julian Karhoff via mailmate wrote:</p>
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;">
<p dir="auto">Hi folks,</p>
<p dir="auto">is the above possible: adding a default bcc for a mail for a specific sender mail address in the composer view? So if I choose as sender <a href="mailto:a@example.com" style="color: #777777;">a@example.com</a>, bcc becomes directly <a href="mailto:b@example.com" style="color: #777777;">b@example.com</a>?</p>
<p dir="auto">I wasn't able to find such an option. Maybe in a plist?</p>
<p dir="auto">Any help is appreciated.</p>
<p dir="auto">Best regards,</p>
<p dir="auto">Julian</p>
<hr style="border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc);">
<p dir="auto">mailmate mailing list<br>
Unsubscribe: <a href="https://lists.freron.com/listinfo/mailmate" style="color: #777777;">https://lists.freron.com/listinfo/mailmate</a></p>
</blockquote>

</div>
</div>
</body>

</html>