T
Thomy
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 o
the web the following script to avoid sending e-mails with no subject:
Private Sub Application_ItemSend(ByVal Item As Object, Cancel A
Boolean)
Dim strSubject As String
strSubject = Item.Subject
If Len(strSubject) = 0 Then
Prompt$ = "Subject not present, continue?"
If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Chec
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-mai
without attachment to more then, let’s say, 8 addresses. The idea i
that when I send an e-mail to several recipients I usually have t
attach something, so this would be a valuable warning to avoi
forgetting it.
Can you help?
Thanks,
To
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 o
the web the following script to avoid sending e-mails with no subject:
Private Sub Application_ItemSend(ByVal Item As Object, Cancel A
Boolean)
Dim strSubject As String
strSubject = Item.Subject
If Len(strSubject) = 0 Then
Prompt$ = "Subject not present, continue?"
If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Chec
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-mai
without attachment to more then, let’s say, 8 addresses. The idea i
that when I send an e-mail to several recipients I usually have t
attach something, so this would be a valuable warning to avoi
forgetting it.
Can you help?
Thanks,
To