Ga naar hoofdinhoud

Outlook: automatische herinnering bij het vergeten van bijlagen in berichten

U kunt hoofdpijn hebben als u vergeet bijlagen toe te voegen, maar herinner de ontvangers eraan om de bijlagen in de hoofdtekst van het e-mailbericht te controleren. Hier zullen we twee trucs introduceren over hoe u zichzelf automatisch kunt herinneren wanneer u een e-mailbericht verzendt waarin mogelijk bijlagen ontbreken in Microsoft Outlook.

Automatische herinnering bij het vergeten van bijlagen in Outlook 2013/2016

Automatische herinnering bij het vergeten van bijlagen in Outlook 2007 en 2010

verwijder alle dubbele contacten uit een of meerdere contactenmappen in Outlook

Soms kunnen we dezelfde contacten herhaaldelijk toevoegen, hoe kunnen de dubbele contacten uit een of meerdere contactenmappen worden verwijderd? Kutools for Outlook's Duplicate Contacts functie kan snel dubbele contacten verwijderen of samenvoegen op basis van e-mails, volledige naam of andere criteria uit een of meer contactenmappen.    Klik voor een gratis proefperiode van 45 dagen!
doc dubbele contacten verwijderen 1
 
Kutools for Outlook: met tientallen handige Outlook-invoegtoepassingen, gratis te proberen zonder beperking in 45 dagen.
Office-tabblad - Schakel bewerken en bladeren met tabbladen in Microsoft Office in, waardoor werken een fluitje van een cent wordt
Kutools voor Outlook - Geef Outlook een boost met meer dan 100 geavanceerde functies voor superieure efficiëntie
Geef uw Outlook 2021 - 2010 of Outlook 365 een boost met deze geavanceerde functies. Geniet van een uitgebreide gratis proefperiode van 60 dagen en verbeter uw e-mailervaring!

pijl blauw rechts belAutomatische herinnering bij het vergeten van bijlagen in Outlook 2013/2016

Microsoft Outlook 2013 ondersteunt de functie om u automatisch te waarschuwen wanneer u een e-mailbericht verzendt waarin mogelijk bijlagen ontbreken.

Stap 1: klik op de Dien in > Opties.

Stap 2: Klik in het dialoogvenster Outlook-opties op E-mailadres in de linkerbalk.

Stap 3: Ga naar de Stuur berichten sectie, en blijf de optie van Waarschuw mij als ik een bericht verstuur waarin mogelijk een bijlage ontbreekt.

Stap 4: klik op de OK knop om dit dialoogvenster te verlaten.

Dan waarschuwt Microsoft Outlook 2013 of 2016 u automatisch als u bijlagen vergeet.

U voert bijvoorbeeld de tekst 'controleer bijlagen","bijlagen bekijken”, Enz. In uw berichttekst, maar voeg geen bijlagen in de Gehechtheid veld. Bij het klikken op het Verzenden knop, verschijnt er een waarschuwingsvenster waarin staat dat u bent vergeten een bestand toe te voegen. Zie de volgende schermafbeelding:


pijl blauw rechts belAutomatische herinnering bij het vergeten van bijlagen in Outlook 2007 en 2010

Microsoft Outlook 2007 en 2010 ondersteunen geen automatische waarschuwing als u bijlagen vergeet. Een VBA-macro kan u helpen dit te realiseren.

Stap 1: druk op de anders + F11 toetsen om het Microsoft Visual for Applications-venster te openen.

Stap 2: Gebruik Project 1 in de linkerbalk en dubbelklik op het DezeOutlookSessie om het te openen.

Stap 3: Plak de volgende code in het ThisOutlookSession-venster.

VBA: waarschuwing als de bijlage niet wordt ingevoegd

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

On Error GoTo handleError

iIndex = InStr(Item.Body, "attach")

If iIndex > 0 And Item.Attachments.Count = 0 Then

retMB = MsgBox("You may have forgotten to attach a file." & vbCrLf & vbCrLf & "Do you still want to continue?", vbQuestion + vbYesNo + vbMsgBoxSetForeground)
If retMB = vbNo Then Cancel = True

End If

handleError:

If Err.Number <> 0 Then
MsgBox "Outlook Attachment Alert Error: " & Err.Description, vbExclamation, "Outlook Attachment Alertr Error"
End If

End Sub

Stap 4: klik op de Bespaar knop op de werkbalk.

Als u vanaf nu de tekst 'gehechtheid"In de berichttekst maar voeg geen bestanden toe, verschijnt de waarschuwingsherinnering om u te vertellen dat u bent vergeten een bestand toe te voegen wanneer u op de Verzenden knop. Zie screenshot:


Beste Office-productiviteitstools

Kutools for Outlook - Meer dan 100 krachtige functies om uw Outlook een boost te geven

🤖 AI Mail-assistent: Directe professionele e-mails met AI-magie: met één klik geniale antwoorden, perfecte toon, meertalige beheersing. Transformeer e-mailen moeiteloos! ...

???? Email Automation: Niet aanwezig (beschikbaar voor POP en IMAP)  /  Plan het verzenden van e-mails  /  Automatische CC/BCC volgens regels bij het verzenden van e-mail  /  Automatisch doorsturen (geavanceerde regels)   /  Begroeting automatisch toevoegen   /  Splits e-mails van meerdere ontvangers automatisch op in individuele berichten ...

📨 email management: Gemakkelijk e-mails herinneren  /  Blokkeer zwendel-e-mails van onderwerpen en anderen  /  Verwijder dubbele e-mails  /  Uitgebreid Zoeken  /  Consolideer mappen ...

📁 Bijlagen ProBatch opslaan  /  Batch losmaken  /  Batchcompressie  /  Automatisch opslaan   /  Automatisch loskoppelen  /  Automatisch comprimeren ...

???? Interface-magie: 😊Meer mooie en coole emoji's   /  Verhoog uw Outlook-productiviteit met weergaven met tabbladen  /  Minimaliseer Outlook in plaats van te sluiten ...

???? Wonderen met één klik: Beantwoord iedereen met inkomende bijlagen  /   Antiphishing-e-mails  /  🕘Toon de tijdzone van de afzender ...

👩🏼‍🤝‍👩🏻 Contacten en agenda: Batchcontacten toevoegen uit geselecteerde e-mails  /  Splits een contactgroep in individuele groepen  /  Verwijder verjaardagsherinneringen ...

Over 100 Eigenschappen Wacht op je verkenning! Klik hier om meer te ontdekken.

 

 

Comments (34)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
The built in functionality is not as good as the VBA code !!! Test it for yourself, for example, if you copy/paste the "please check attachments" text, it won't trigger... you need to write it in the body. I prefer the VBA code version, and moreover you can customize it (language and check for other words).
This comment was minimized by the moderator on the site
Will this vba code work with signatures?
This comment was minimized by the moderator on the site
I had the same issue, you have to change the code "If iIndex > 0 And Item.Attachments.Count = 0" to "If iIndex > 0 And Item.Attachments.Count > 1 "This only works when you have 1 picture in you signiture and not emailing in a string with a lot of signitures, but at least it helps for single emails.
This comment was minimized by the moderator on the site
works well- easy to set up-thanks
This comment was minimized by the moderator on the site
Will not work for me regardless of count value. I've tried everything here and for some reason can never get the popup.
This comment was minimized by the moderator on the site
THANK YOU!
This works perfectly for me with "If iIndex > 0 And Item.Attachments.Count = 0" despite the fact that I have an image in my signature. I'm using Microsoft Office Professional Plus 2010
This comment was minimized by the moderator on the site
If anyone is having trouble using this code, images in your signature count as attachments.


I have one image in my signature, so changing the line:

If iIndex > 0 And Item.Attachments.Count = 0 Then

to:

If iIndex > 0 And Item.Attachments.Count = 0 Or Item.Attachments.Count = 1 Then

Made it work for me.
This comment was minimized by the moderator on the site
Thanks for pointing this out this was also a problem I was having. I found that your fix prompted the warning regardless of whether the word 'attach' had been used. Instead I used:

If iIndex > 0 And Item.Attachments.Count = 1 Then

This prompted the warning only when intended not whenever any email was sent.
This comment was minimized by the moderator on the site
Thanks Anthony, it worked.
This comment was minimized by the moderator on the site
This Code would not work for me. I had to use this one:
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

If InStr(1, Item.Body, "attach", vbTextCompare) > 0 Then

If Item.Attachments.Count = 0 Then

answer = MsgBox("There's no attachment, send anyway?", vbYesNo)

If answer = vbNo Then Cancel = True

End If

End If

End Sub
This comment was minimized by the moderator on the site
Is the Auto-Attachment feature designed to work when email is sent using the Ctrl+Enter keys?
This comment was minimized by the moderator on the site
Is the Auto Attachment feature designed to work when you send email using the Ctrl+Enter keys?
This comment was minimized by the moderator on the site
I've used this code and when I test it with my email address in the to line I get the error message, but if I put anyone else in there it goes through just fine. Any ideas about what could be happening?
This comment was minimized by the moderator on the site
How to set Warning when a message is sent without attachment in lotus notes 8.5.3 ?
There are no comments posted here yet
Load More
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations