Another Mail question - "Reply To" command

I have searched for my problem on MacScripter and using Google to no avail.

I have a standalone computer that handles many automated tasks for me. One of them is to send emails for me for various purposes.

I don’t want these emails going out using my name. So this computer sends email using an email address other than my own. The problem is sometimes people will reply back to the computer and I don’t see the email until much later.

The emails are created with an AppleScript and I can’t figure out fill the “Reply to” field in the email so I can have the reply back using my email address. Does anyone know the command to do this?

Thanks in advance.

Well without a reply I just did a work around. After creating the email I put these lines of script to just do a backward tab to the “Reply to” field in Mail


tell application "System Events" to tell application process "Mail"
	set frontmost to true
	keystroke tab using shift down
	keystroke tab using shift down
	keystroke "myemail@mydomain.com"
end tell