How to make subject field required in Outlook 2007?

I always forget to email the subject, so I want the subject field to be required. Can you help me?

+1


source to share


3 answers


Private Sub Application_ItemSend(ByVal Item As Object, ByRef Cancel As Boolean)

  If Item.Subject = "" Then
    Item.Subject = InputBox("Please do not always forget the subject!")
  End If

  If Item.Subject = "" Then
    MsgBox "Won't send this without a subject."
    Cancel = True
  End If
End Sub

      



+2


source


Do While Item.Subject = ""
Item.Subject = InputBox("..")
Loop

      



0


source


I have a similar procedure that just checks if I mention the word attachment and prompt if I want to undo the submission and I have to put in a line:

Item.Display

so I can add the attachment. This way you can simply request a post with a post to add a subject ...

0


source







All Articles