empty subject line warning - outlook xp

  • Thread starter Thomas Houseman
  • Start date
T

Thomas Houseman

How do I enable the feature that warns me if I try to send an email message
without a subject line? Does such a feature exist?
 
M

Milly Staples [MVP - Outlook]

No.

--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. Due to
the (insert latest virus name here) virus, all mail sent to my personal
account will be deleted without reading.

After searching google.groups.com and finding no answer, Thomas Houseman
asked:

| How do I enable the feature that warns me if I try to send an email
| message without a subject line? Does such a feature exist?
 
S

Sue Mosher [MVP-Outlook]

There is no such feature, but you can build it in with a little 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

For a more elaborate version that also checks for expected attachments, see
http://www.outlookcode.com/codedetail.aspx?id=553
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top