Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Outlook / General MS Outlook Questions / March 2008

Tip: Looking for answers? Try searching our database.

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

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
CatBear - 27 Mar 2008 01:52 GMT
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?
Brian Tillman - 27 Mar 2008 02:29 GMT
> 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
Signature

Brian Tillman [MVP-Outlook]

Michal [Outlook MVP] - 27 Mar 2008 10:51 GMT
> 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.

Signature

Best regards,
Michal [Microsoft Outlook MVP]

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


Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.