Re: message from the Mail to FileMakerPro
Re: message from the Mail to FileMakerPro
- Subject: Re: message from the Mail to FileMakerPro
- From: cricket <email@hidden>
- Date: Mon, 12 Aug 2002 17:11:35 -0700
On Wednesday, August 7, 2002, at 08:14 PM, Donald Liu wrote:
I'm trying to copy a message from my Mail to the FileMaker Pro
database. However, in FileMaker Pro, I get the single-line message;
the newline and carriage returns appear box-like characters.
How do I make the message in FileMaker Pro look like the message in my
Mail?
Try using this when processing the body of the message:
-- theContent in this case is the body of the message from Mail
set AppleScript's text item delimiters to ASCII character 10
set theBody to ""
set everyTextItem to every text item of theContent repeat with
eachTextItem in everyTextItem
set theBody to theBody & eachTextItem & (ASCII character 13) end
repeat
set AppleScript's text item delimiters to ""
- cricket
----->
Software Entomologist/Mail for Mac OS X email@hidden
---------->
Knives make all other technologies possible and are part of what
defines us as human.
_______________________________________________
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.