vip_alerts.lua

 1-- vip_alerts.lua
 2-- Shows prominent notifications for emails from important senders.
 3-- Add your VIP addresses to the list below.
 4
 5local matcha = require("matcha")
 6
 7local vips = {
 8    "boss@example.com",
 9    "ceo@example.com",
10    "partner@example.com",
11}
12
13matcha.on("email_received", function(email)
14    for _, vip in ipairs(vips) do
15        if email.from:find(vip, 1, true) then
16            matcha.notify("VIP: " .. email.from .. " - " .. email.subject, 5)
17            return
18        end
19    end
20end)