Re: Scripting Eudora personalities
Re: Scripting Eudora personalities
- Subject: Re: Scripting Eudora personalities
- From: "Dr. Max Bonilla" <email@hidden>
- Date: Fri, 11 Oct 2002 16:22:06 -0500
Bill,
Yes, I've done that, but my work's network reject the email (since
only the from: field has changed, not the server, etc), as a possible
intrusion in the network. So what I would like to do is to script
the actual change of personality, which has all the settings that
allow me to send mail from within the firewall.
You say it is possible, pray tell!
Thanks a lot!
Max
You can, but you actually don't have to change the personalities.
Just make a script that plants the appropriate "From" address in the
from field and you're all set. It's nice that Apple Events will
override Eudora's UI and allow you to do this. You can even send
mail from email@hidden if you want. :-)
I use this kind of thing all the time. I reply from other accounts
that are not even listed among my personalities settings in this set
of Eudora Prefs.
- web
tell application "Eudora"
set newmessage to (make message at end of mailbox "out" of
mail folder "")
set field "To" of newmessage to "a Nickname"
--set field "Bcc" of newmessage to "a different Nickname"
set field "From" of newmessage to "any address you want"
-- normally the "From" field defaults to your name and address
set field "Subject" of newmessage to "some subject"
set field "" of newmessage to "Text of the message"
save newmessage
close newmessage
queue newmessage
-- send newmessage
end tell
At 3:42 PM -0500 11/10/02, Dr. Max Bonilla wrote:
Is there a way to script Eudora personalities, so that I can have
the script change the Eudora personality depending on who I'm
writing to? I need to script a change of personalities between my
Work and Home settings but haven't been able to find out how.
Thanks!
Max Bonilla
_______________________________________________
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.