Missing attachment warning

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
 
S

Sue Mosher [MVP]

Add another If ... End If block to check the value of Item.Recipients.Count.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top