Re: Mail App - plain text
Re: Mail App - plain text
- Subject: Re: Mail App - plain text
- From: Dave Balderstone <email@hidden>
- Date: Wed, 30 Mar 2011 13:50:46 -0600
On 2011-03-30, at 1:25 PM, Michelle Steiner wrote:
> tell application "Mail"
> set default message format to plain text
> set newMessage to make new outgoing message with properties {subject:"mailSubject", content:"mailContent" as text, visible:true}
> set default message format to rich text
> end tell
I'd save and restore the prefs slightly differently, especially if the script is running on someone else's Mac, but that may be a matter of preference:
tell application "Mail"
set oldFormat to default message format
set default message format to plain text
set newMessage to make new outgoing message with properties {subject:"mailSubject", content:"mailContent" as text, visible:true}
set default message format to oldFormat
end tell _______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden