Outlook should warn before sending messages with blank subjects.

G

Guest

Outlook Express can be configured to warn before sending email messages with
blank subject lines. A number of clients and friends have asked me why
Outlook lacks this useful function. I have no answer for them, and the
"official" answer from Microsoft is that it can't be done. I think the idea
is worthy of implementation as soon as possible.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...5ac7c41fa&dg=microsoft.public.outlook.general
 
A

AndreasRoeder

Jim said:
Outlook Express can be configured to warn before sending email
messages with blank subject lines. A number of clients and friends
have asked me why Outlook lacks this useful function. I have no
answer for them, and the "official" answer from Microsoft is that it
can't be done. I think the idea is worthy of implementation as soon
as possible.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click
the "I Agree" button in the message pane. If you do not see the
button, follow this link to open the suggestion in the Microsoft
Web-based Newsreader and then click "I Agree" in the message pane.
http://www.microsoft.com/office/com...5ac7c41fa&dg=microsoft.public.outlook.general

HI Jim,
you can do it by using VBA,
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
If IsNull(Item.Subject) Or Len(Item.Subject) = 0 Then
MsgBox "subject is empty!!!", vbCritical, "Outlook Subject"
Cancel = True
End If
End Sub

From www.outlookcode.com
 

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