Forwarding emails

2003-04-07 Thread Brian Hall
I'm trying to write an AppleScript to forward emails. I need to forward headers, so I need to open the message (which works), select the contents (which I can't get to work), and then forward it (which doesn't seem to work), optionally forwarding to a specific address. How do I get PowerMail

Re: Forwarding emails

2003-04-09 Thread Brian Hall
>From: "Wayne Brissette" <[EMAIL PROTECTED]> > >If headers are needed, then use > >set theText to the source of the msg Thanks, that's exactly what I was looking for. Anybody want my scripts for forwading selected messages to a specific address, and forwarding selected messages to

Re: Forwarding emails

2003-04-07 Thread Wayne Brissette
George Henne [EMAIL PROTECTED] on Monday, April 07, 2003 stated: >tell application "PowerMail" > set theMessages to current messages > repeat with msg in theMessages > -- put your code here to do something on each message msg > set theText to the content of

Re: Forwarding emails

2003-04-07 Thread George Henne
tell application "PowerMail" set theMessages to current messages repeat with msg in theMessages -- put your code here to do something on each message msg set theText to the content of msg ... George Henne NS BASI