In my previous post I asked about setting a specific sender with an
AppleScript ...
I also want to know how to set a CC, and a BCC.
I tried to follow the "to recipient at end" syntax and replace with
"cc recipient at end" but that didn't work.
So with a message, can I have a "to", a "cc", and a "bcc" (or multiple
instances of one/all)?
Thanks again,
Darren
tell application "Mailplane"
set m to make new outgoing message
tell m
set sender to "[email protected]" --doesn't work,
tried in
different places in this script, too
set r to make new to recipient at end
tell r
set address to "[email protected]"
set name to "Dude"
end tell
set subject to "Testing"
set content to "Hi Dude-" & return & return & "This is
a test
email." & return & return & "Cordially," & return & return "The
Management"
end tell
compose m
end tell
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"mailplaneapp" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/mailplaneapp?hl=en
-~----------~----~----~----~------~----~------~--~---