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 / New Users / February 2006

Tip: Looking for answers? Try searching our database.

Can Outlook warn if sending with a blank subject line

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
ulkash - 07 Feb 2006 11:30 GMT
When sending an email from Outlook 2003 can an option or rule be set to check
for a blank subject line and bring up an 'are you sure?' type message when
you click on Send?
Rsoutlook.com - 07 Feb 2006 11:45 GMT
You can buy this cheap software to solve your problem:
http://www.rsoutlook.com/us/prods/prod12.html

Signature

Ricardo Silva [Outlook MVP]
Add-ins for Microsoft(c) Outlook(c)
http://www.rsoutlook.com/us/products.html

Vince Averello [MVP-Outlook] - 07 Feb 2006 11:50 GMT
As far as I know, there isn't a way.

> When sending an email from Outlook 2003 can an option or rule be set to
> check
> for a blank subject line and bring up an 'are you sure?' type message when
> you click on Send?
Christian Goeller - 07 Feb 2006 12:53 GMT
ulkash, you  wrote on Tue, 7 Feb 2006 03:30:30 -0800:

> When sending an email from Outlook 2003 can an option or rule be set to check
> for a blank subject line and bring up an 'are you sure?' type message when
> you click on Send?

Use the VBA-Code below:

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

Signature

Best Regards
Christian Goeller

Sue Mosher [MVP-Outlook] - 07 Feb 2006 12:55 GMT
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)
   Dim strMsg As String
   Dim res As Long
   If Item.Subject = "" Then
       Cancel = True
       strMsg = "Please fill in the subject before sending."
       MsgBox strMsg, _
              vbExclamation + vbSystemModal, "Missing Subject"
       Item.Display
   End If
End Sub

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

Signature

Sue Mosher, Outlook MVP
  Author of Configuring Microsoft Outlook 2003
    http://www.turtleflock.com/olconfig/index.htm
  and Microsoft Outlook Programming - Jumpstart for
    Administrators, Power Users, and Developers
    http://www.outlookcode.com/jumpstart.aspx

> When sending an email from Outlook 2003 can an option or rule be set to check
> for a blank subject line and bring up an 'are you sure?' type message when
> you click on Send?
 
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.