Here is a simple way of allowing users to automatically spell check there mail
messages on the sending of a message.
All that needs to be done is create a profile document called SpellCheckProfile
with a field called AutoSpellCheck that will hold the values of Yes or No.
Then you should build some interface to change the field.
Once that is done all you have to do is add the attached code to the top of all
the actions that send the mail message.
speller:=@GetProfileField("SpellCheckProfile"; "AutoSpellCheck");
@If(speller="Yes";@Command([EditGotoField];"Body") & @Command([EditSelectAll])
& @Command([ToolsSpellCheck]);"");
This was first published in November 2000