Hello
I'm trying to spell check and send an outlook e-mail using the following macro:
Sub SpellIt()
Dim oMail As Outlook.MailItem
Dim oDoc As Word.Document
Set oMail = Application.ActiveInspector.CurrentItem
Set oDoc = Application.ActiveInspector.WordEditor
oMail.Save
oDoc.Content.LanguageID = wdGerman
oDoc.CheckSpelling
oMail.Save
oMail.Send
End Sub
I need to be able to set the language explicitly to German and I found it can be done using Content.LanguageID, but this does not include the subject line. How can I set the language for the subject line? Of course it would be even better to be able to set it for the whole document, but I cannot apply LanguageID to .Document
Any ideas?
Thanks, Reto