MSOutlook Attachments

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

Guest

Why not add functionality to MSOutlook where if the word "attachment" or
"attach" is in the message body and no attachment has been attached, a
message is generated to the user to check if they want to include an
attachment...

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...4660079cc&dg=microsoft.public.outlook.general
 
There are a lot of add-ins out there that can do this for you (I know the
voting for this is for native support in Outlook). You can also do this by
using some VBA. To help you on your way;

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim strBody As String
Dim lngres As Long

strSubject = Item.Body
If InStr(1, Item.Body, "attach") <> 0 Then
If Item.Attachments.Count = 0 Then
lngres = MsgBox("'Attach' in body, but no attachment - send
anyway?", _
vbYesNo + vbDefaultButton2 + vbQuestion,
"Send?")
If lngres = vbNo Then Cancel = True
End If
End If

End Sub

--
Robert Sparnaaij [MVP-Outlook]
www.howto-outlook.com

Tips of the month:
-FREE tool; QuickMail. Create new Outlook items anywhere from within Windows
-Properly back-up and restore your Outlook data

-----
Why not add functionality to MSOutlook where if the word "attachment" or
"attach" is in the message body and no attachment has been attached, a
message is generated to the user to check if they want to include an
attachment...

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...4660079cc&dg=microsoft.public.outlook.general
 

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

Back
Top