Re: Eudora scripts
Re: Eudora scripts
- Subject: Re: Eudora scripts
- From: David Groover <email@hidden>
- Date: Thu, 21 Feb 2002 11:27:39 -0500
Here is one I use from Palm Desktop. Forgot where I got it.
----------
This script sends an email message with Eudora. In order for this to
work, your third custom field must contain the email address. The default
settings for Palm are okay with that. - Diana of vivaladata.com. 1/10/00
----------
tell application "Palm Desktop"
set strFullname to full name of address 0
set strEmail to text of address 0
end tell
set pTheAddress to strFullname & " <" & strEmail & ">" as string
tell application "Eudora"
activate
make message at end of mailbox "Out"
tell message ""
set field "to" to pTheAddress
set field "subject" to thetest
end tell
end tell
Thus spake email@hidden:
>
I'm new to AS but have a programming background understand what's going
>
on...
>
However, when I try to create a new message in Eudora I get an error
>
saying that data could not be converted correctly:
>
set newMsg to make new message at end
>
I have tried adding with properties {body:"text"}
>
and more properties but it doesn't seem to help
>
anyone got a script that creates messages in Eudora
>
I'm using Eudora 5.1 (sponsored mode) on MacOS9
>
Thanks in advance
_______________________________________________
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.