MOZART&CO · Rotating Signature [TEST]
Every email sent on a given day picks 3 projects, locked forever. Tomorrow rotates to a new 3. Past emails always show what was featured the day you sent them.
01 · Today's picks2026-05-29
Pool of 42 case studies. Seeded random per date. Locked once written.
02 · Live previewtoday's sig
This is exactly what recipients will see for emails sent today.
03 · Installhow it works
For full automation, switch to the Office Script tab.
One-time setup. After install, Outlook auto-injects today's date into every email's signature on send.
{DATE} placeholder./**
* MOZART&CO Rotating Signature - On Send
* Replaces {DATE} placeholder in signature with today's date (YYYY-MM-DD)
* Install: Outlook → Settings → Customize actions → Add the script
*/
function main(event: Office.AddinCommands.Event) {
const today = new Date().toISOString().slice(0, 10);
Office.context.mailbox.item.body.getAsync(
Office.CoercionType.Html,
(result) => {
if (result.status === Office.AsyncResultStatus.Succeeded) {
const updated = result.value.replace(/\{DATE\}/g, today);
Office.context.mailbox.item.body.setAsync(
updated,
{ coercionType: Office.CoercionType.Html },
() => event.completed({ allowEvent: true })
);
} else {
event.completed({ allowEvent: true });
}
}
);
}
Heads up: Office Scripts require Microsoft 365 Business/Enterprise. For Personal Outlook, use the Quick Test tab.