Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


reply to | 21 comments | Create New Account
Click here to return to the 'reply to' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
reply to
Authored by: hayne on Aug 22, '03 02:00:21PM
# Doesn't work! Anyone know why?
#my $replytoln = $replyto ? "set reply to to \"$replyto\"" : "";
I guess the problem is with the variable name (reply to) using one of AppleScript's reserved words (to). You might try putting vertical bars (the 'pipe' symbol: | ) around the variable name:

my $replytoln = $replyto ? "set |reply to| to \"$replyto\"" : "";

[ Reply to This | # ]

reply to
Authored by: njnystrom on Aug 22, '03 03:25:48PM

Thanks. This does make the script parse now. But it seems Mail.app ignores it: the Reply-To: header is not set.

---
Nate



[ Reply to This | # ]