David Gordon wrote:

>I want to set up a rule to auto reply to messages on a mailing list
>depending on message content.
>
>I can see how to do this but I want to reply to the original mailer - not
>the mailing list.

You can do this with an AppleScript:

tell application "PowerMail"
  set theMessages to current messages
  repeat with msg in theMessages
    set theReply to reply to msg without replying to all
    delete recipient 1 of theReply
    set senderAddr to sender of msg
    make new recipient with properties {address:senderAddr} at theReply
    set content of theReply to "autoreply text"
    send theReply
  end repeat
end tell



Jérôme - PowerMail Engineering


---------------------------------------------------------------------
   "I have found no other POP client that can do so much with such ease
    and efficiency, no matter how large the dataset."
  PowerMail user comment on www.versiontracker.com


         Download a demo version from www.ctmdev.com
---------------------------------------------------------------------



Reply via email to