You could use KeyboardMaestro and emate. Here’s what I have done:

I have templates for that which I access via the Commands menu. Here’s an 
example:

• mkdir ~/Library/Application Support/MailMate/Bundles/Templates.mmBundle
• mkdir ~/Library/Application 
Support/MailMate/Bundles/Templates.mmBundle/Commands
• mkdir -p ~/Library/Application 
Support/MailMate/Bundles/Templates.mmBundle/Support/bin

Create an Info.plist file in Templates.mmBundle like this:

{       "contactEmailRot13" = "xxx";
        contactName = "YOUR NAME";
        description = "...";
        name = "Templates";
        uuid = "9341B0CD-B0CE-4C88-A4B5-F46DD9AAAAAA";
}

Create an .mmcommand file in Commands, e.g.

{       name = "Listmaster";
        uuid = "3A610C0F-C6EE-4C2E-BA93-516CF91251B9";
        input = "none"; // Options are: none, raw, decoded, canonical, html, 
selection, formatted
        output = "actions"; // Options are: discard, actions
        executionMode = "noMessages"; // Options are: noMessages, 
singleMessage, multipleMessages
        command = '#!/bin/bash\n"${MM_BUNDLE_SUPPORT}/bin/listmaster"\n';
}

Create the script that’s executed as command in Support/bin:

#!/bin/bash

ACTION=`defaults read com.freron.MailMate MmMailManCommandAction 2>/dev/null`
if [ -z "${ACTION}" ]; then
        ACTION="openMessage"
fi

cat << END
{ actions = (
                {
                        type = createMessage;
                        headers = {
                                "from" = "Sebastian Hagedorn 
<[email protected]>";
                                "cc" = "Listmaster Uni Köln 
<[email protected]>";
                                "reply-to" = "Listmaster Uni Köln 
<[email protected]>";
                                "#signature" = "Sebastian Hagedorn 
(Listmaster)";
                        };
                        resultActions = (
                {
                        type = "${ACTION}";
                }
            );
                        body = "Sehr geehrte";
                }
        );
}
END

Cheers,
Sebastian
-- 
   .:.Sebastian Hagedorn - Weyertal 121 (Gebäude 133), Zimmer 2.13.:.
                .:.IT Center University of Cologne (ITCC).:.
  .:.Universität zu Köln / Cologne University - ✆ +49-221-470-89578.:.
           .:. SIP: [email protected] .:.

On 17 Jun 2026, at 20:42, Julian Karhoff via mailmate wrote:

> Hi folks,
>
> 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 [email protected], 
> bcc becomes directly [email protected]?
>
> I wasn't able to find such an option. Maybe in a plist?
>
> Any help is appreciated.
>
> Best regards,
>
> Julian
> _______________________________________________
> mailmate mailing list
> Unsubscribe: https://lists.freron.com/listinfo/mailmate

Attachment: smime.p7s
Description: S/MIME digital signature

_______________________________________________
mailmate mailing list
Unsubscribe: https://lists.freron.com/listinfo/mailmate

Reply via email to