Re: Mail - Subject and Body read only?
Re: Mail - Subject and Body read only?
- Subject: Re: Mail - Subject and Body read only?
- From: Andy Satori <email@hidden>
- Date: Wed, 29 Jan 2003 11:38:48 -0500
I believe this is based upon the at location you open it in. I've had
no problems with this, and I use it regularly in an iCal todo list to
Mail message script. Below is the code snippet I use to create the
mail message
-- create a mail message
tell application "Mail"
set theMessage to make new outgoing message with properties
{sender:i"me <email@hidden>", visible:false}
set subject of theMessage to "Weekly Status Update"
set content of theMessage to theTaskList
tell theMessage
make new to recipient at end of to recipients with properties
{name:"Jane Doe", address:"email@hidden"}
make new to recipient at end of to recipients with properties
{name:"John Doe", address:"email@hidden"}
send
end tell
end tell
Andy
On Wednesday, January 29, 2003, at 10:03 AM, Michelle Steiner wrote:
On Wednesday, January 29, 2003, at 02:03 AM, Michael Scheurer wrote:
can someone confirm of the above is true?
The dictionary doesn't indicate r/o but I consistently get type 8
error trying to change either.
I get the same error. Maybe it's not implemented yet.
--Michelle
--
"There's some good in the world, Mr. Frodo, and it's worth fighting
for."
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.