Steve
The reply-to email address is a spam trap.
Email steve 'at' shodgson 'dot' org 'dot' uk
> Is there an easy way to send the current message using Applescript
> rather than the application menu?
It turns out that this is pretty straightforward:
tell application "Mail" to activate
tell application "System Events"
tell process "Mail"
tell menu bar 1
click menu bar item "Message"'s menu "Message"'s ¬
menu item "Send"
end tell
end tell
end tell
Requires Access for Assistive Devices to be enabled I think.