Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,10 @@
on sendmail(msg_to, msg_cc, msg_subject, msg_text)
tell application "Mail"
set msg to make new outgoing message with properties {subject:msg_subject, content:msg_text, visible:true}
tell msg
make new to recipient with properties {address:msg_to}
make new cc recipient with properties {address:msg_cc}
send
end tell
end tell
end sendmail