Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
10
Task/Send-email/AppleScript/send-email.applescript
Normal file
10
Task/Send-email/AppleScript/send-email.applescript
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue