how can I set up a warning before I send an email to prompt me to.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using Office 2003. I am tired of hitting the send button only to instantly
realize I forgot to include my attachments. Help! Has any one, or is there,
a warning system you can toggle on that would ask you "do you have an
attachment?".
Thanks.
 
Hi,

you could add a little macro to solve your problem.

'<DieseOutlookSitzung>
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
Dim oMail As Outlook.MailItem
If TypeOf Item Is Outlook.MailItem Then
Set oMail=Item
If oMail.Attachments.Count=0 then
Cancel= _
(MsgBox("Do you want to add attachments?", vbQuestion or
vbyesno)=vbYes)
Endif
Endif
End Sub
'</DieseOutlookSitzung>
 
Back
Top