Moving mails from one mailbox to another (Eudora)

how do i make a script to move/transfer mails from one mailbox to another.

Example: transfer mails from mailbox “Inbox” to mailbox “Archive_Inbox”

This might work:

tell application "Eudora"
	set count_ to count messages of mailbox "Inbox"
	set fm to a reference to first message of mailbox "Inbox"
	repeat count_ times
		move fm to end of mailbox "Archive_Inbox"
	end repeat
end tell

– Rob

Thank you once again! :slight_smile: