![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hello.
I am trying to personalize my Outlook to avoid sending useless e-mails. For instance, since I have no knowledge of Visual Basic, I have found on the web the following script to avoid sending e-mails with no subject: Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) Dim strSubject As String strSubject = Item.Subject If Len(strSubject) = 0 Then Prompt$ = "Subject not present, continue?" If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Check for Subject") = vbNo Then Cancel = True End If End If End Sub It works fine. Now I would like something different: I would like a similar warning when I am trying to send an e-mail without attachment to more then, let’s say, 8 addresses. The idea is that when I send an e-mail to several recipients I usually have to attach something, so this would be a valuable warning to avoid forgetting it. Can you help? Thanks, Tom |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
CTRL+ENTER Sending Message Warning | Senol | Outlook - Using Contacts | 1 | February 4th 10 11:05 PM |
ActiveX warning message when adding signature | Zaur Bahramov | Outlook - General Queries | 5 | July 4th 08 11:12 AM |
Warning message | rommel | Outlook and VBA | 1 | December 1st 07 07:45 AM |
outlook 2000 SP3 attachment warning message | Jim Wray | Outlook - General Queries | 0 | August 18th 07 04:20 PM |
Warning message | Bernardo Rezende | Outlook and VBA | 1 | May 3rd 07 05:59 PM |