There is no such feature, but you can build it in with a little Outlook
2000/2002 VBA code:
Private Sub Application_ItemSend _
(ByVal Item As Object, Cancel As Boolean)
If Item.Subject = "" Then
Cancel = True
MsgBox "Please fill in the subject before sending.", _
vbExclamation, "Missing Subject"
End If
End Sub
If you're new to Outlook VBA macros, these web pages should help you get
started:
http://www.winnetmag.com/Articles/Index.cfm?ArticleID=21522&pg=1
http://www.slipstick.com/dev/vb.htm
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
Sergio Checchi said:
Hello everybody,
Is it possible to tune Outlook (version XP or 2003) so that it's required
to fill in a subject when sending a mail?