![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
| Tags: blank, line, outlook, sending, subject, warn |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
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? |
| Ads |
|
#2
|
|||
|
|||
|
You can buy this cheap software to solve your problem:
http://www.rsoutlook.com/us/prods/prod12.html -- Ricardo Silva [Outlook MVP] Add-ins for Microsoft(c) Outlook(c) http://www.rsoutlook.com/us/products.html |
|
#3
|
|||
|
|||
|
As far as I know, there isn't a way.
"ulkash" wrote in message ... 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? |
|
#4
|
|||
|
|||
|
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 -- Best Regards Christian Goeller |
|
#5
|
|||
|
|||
|
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 -- 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 "ulkash" wrote in message ... 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? |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| AutoCorrect does not work in Subject line | Neal | Outlook - General Queries | 1 | May 1st 06 10:29 PM |
| some emails not opening, subject line only, not message | Bill | Outlook - General Queries | 4 | January 26th 06 02:31 PM |
| Use Part of Subject as String | CondtllyFrmttd | Outlook - General Queries | 0 | January 23rd 06 07:57 PM |
| lost subject line | Tony Iorio | Outlook - General Queries | 1 | January 18th 06 12:56 PM |
| To Field blank in Sent Items folder | Dave Murton | Outlook - General Queries | 1 | January 11th 06 04:59 PM |