PC Review


Reply
Thread Tools Rate Thread

Can Outlook propmpt me to add a subject line if forgotten?

 
 
CatBear
Guest
Posts: n/a
 
      27th Mar 2008
I hate when I am in a hurry to send and email, and forget to fill out the
subject line. Is there a way to have Outlook alert me if the subject line is
empty?
 
Reply With Quote
 
 
 
 
Brian Tillman
Guest
Posts: n/a
 
      27th Mar 2008
CatBear <(E-Mail Removed)> wrote:

> I hate when I am in a hurry to send and email, and forget to fill out
> the subject line. Is there a way to have Outlook alert me if the
> subject line is empty?


See if this helps: http://www.outlookcode.com/codedetail.aspx?id=1278
--
Brian Tillman [MVP-Outlook]
 
Reply With Quote
 
Michal [Outlook MVP]
Guest
Posts: n/a
 
      27th Mar 2008
CatBear wrote:
> I hate when I am in a hurry to send and email, and forget to fill out the
> subject line. Is there a way to have Outlook alert me if the subject line is
> empty?

This simple macro should solve the problem:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim oMail As MailItem
Set oMail = Item
If oMail Is Nothing Then Exit Sub

If (StrComp(oMail.Subject, "", vbTextCompare) = 0) Then
MsgBox "What about the subject?"
Cancel = True
End If
End Sub

You need to paste it into the ThisOutlookSession module. And ensure the
macro security level is set to the lowest level.

--
Best regards,
Michal [Microsoft Outlook MVP]

http://www.codetwo.com
Share Outlook on the net without Exchange!
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook rewrites subject line to "SPAM: [original subject]" noctufaber Microsoft Outlook 4 4th Jul 2008 09:57 PM
Outlook 2007: Subject line appearing to cover up CC line, etc... on received mail Matt Brown - identify Microsoft Outlook Discussion 1 4th Jan 2008 07:18 PM
Subject line in Outlook =?Utf-8?B?SmVubmE=?= Microsoft Outlook Discussion 1 31st May 2006 09:53 PM
how do I set up a subject line in outlook? =?Utf-8?B?cGVjb3NfcGV0ZQ==?= Microsoft Outlook Discussion 1 21st Jul 2005 04:23 AM
Subject line in outlook scottnshelly Microsoft Excel Programming 2 8th Apr 2004 04:26 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:22 PM.