Vai al contenuto principale

Outlook: promemoria automatico quando si dimenticano gli allegati nei messaggi

Potresti avere mal di testa a dimenticare l'aggiunta di allegati, ma ricorda ai destinatari di controllare gli allegati nel corpo del messaggio di posta elettronica. Qui introdurremo due trucchi su come ricordare automaticamente a te stesso quando invii un messaggio di posta elettronica a cui potrebbero mancare allegati in Microsoft Outlook.

Promemoria automatico quando si dimenticano gli allegati in Outlook 2013/2016

Promemoria automatico quando si dimenticano gli allegati in Outlook 2007 e 2010

rimuovere tutti i contatti duplicati da una o più cartelle di contatti in Outlook

A volte, possiamo aggiungere ripetutamente gli stessi contatti, come possiamo rimuovere i contatti duplicati da una o più cartelle di contatti? Kutools for Outlook's Duplicate Contacts la funzione può rimuovere o unire rapidamente i contatti duplicati in base a e-mail, nome completo o altri criteri da una o più cartelle di contatti.    Fai clic per una prova gratuita di 45 giorni!
doc rimuovere i contatti duplicati 1
 
Kutools per Outlook: con dozzine di pratici componenti aggiuntivi di Outlook, provabili gratuitamente senza limitazioni in 45 giorni.
Scheda Office: abilita la modifica e la navigazione a schede in Microsoft Office, rendendo il lavoro un gioco da ragazzi
Kutools per Outlook: potenzia Outlook con oltre 100 funzionalità avanzate per un'efficienza superiore
Potenzia il tuo Outlook 2021-2010 o Outlook 365 con queste funzionalità avanzate. Goditi una prova gratuita completa di 60 giorni e migliora la tua esperienza di posta elettronica!

freccia blu freccia destraPromemoria automatico quando si dimenticano gli allegati in Outlook 2013/2016

Microsoft Outlook 2013 supporta la funzionalità di avviso automatico quando si invia un messaggio di posta elettronica che potrebbe mancare di allegati.

Passaggio 1: fare clic su Compila il > Opzioni.

Passaggio 2: nella finestra di dialogo Opzioni di Outlook, fare clic su posta nella barra di sinistra.

Passo 3: Vai al Manda messaggi sezione e continua a controllare l'opzione di Avvisami quando invio un messaggio a cui potrebbe mancare un allegato.

Passaggio 4: fare clic su OK per uscire da questa finestra di dialogo.

Quindi Microsoft Outlook 2013 o 2016 ti avviserà automaticamente se potresti dimenticare gli allegati.

Ad esempio, inserisci il testo di "si prega di controllare gli allegati","visualizzare gli allegati", Ecc. Nel corpo del messaggio, ma non inserire allegati nel file Allegati campo. Quando si fa clic su Invia , verrà visualizzata una finestra di dialogo di avviso per dire che potresti aver dimenticato di allegare un file. Vedere la seguente schermata:


freccia blu freccia destraPromemoria automatico quando si dimenticano gli allegati in Outlook 2007 e 2010

Microsoft Outlook 2007 e 2010 non supportano l'avviso automatico in caso di dimenticanza degli allegati. Una macro VBA può aiutarti a realizzarlo.

Passo 1: premere il tasto altro + F11 tasti per aprire la finestra di Microsoft Visual for Applications.

Passaggio 2: spendi il progetto 1 nella barra di sinistra e fai doppio clic su Questa sessione di Outlook per aprirlo.

Passaggio 3: incolla il codice seguente nella finestra ThisOutlookSession.

VBA: avviso se non si inserisce l'allegato

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

Passaggio 4: fare clic su Risparmi pulsante sulla barra degli strumenti.

D'ora in poi, se aggiungi il testo di "attaccamento"Nel corpo del messaggio ma non allegare file, verrà visualizzato il promemoria di avviso per informarti che potresti aver dimenticato di allegare un file quando fai clic sul pulsante Invia pulsante. Vedi screenshot:


I migliori strumenti per la produttività in ufficio

Kutools for Outlook - Oltre 100 potenti funzionalità per potenziare il tuo Outlook

🤖 Assistente di posta AI: E-mail istantanee professionali con la magia dell'intelligenza artificiale: risposte geniali con un solo clic, tono perfetto, padronanza multilingue. Trasforma l'e-mail senza sforzo! ...

???? Automazione di posta elettronica: Fuori sede (disponibile per POP e IMAP)  /  Pianifica l'invio di e-mail  /  CC/BCC automatico in base alle regole durante l'invio di e-mail  /  Inoltro automatico (regole avanzate)   /  Aggiunta automatica di saluto   /  Suddividi automaticamente le email con più destinatari in singoli messaggi ...

📨 gestione e-mail: Richiama facilmente le email  /  Blocca le email truffe per soggetto e altri  /  Elimina email duplicate  /  Ricerca avanzata  /  Consolidare cartelle ...

📁 Allegati ProSalvataggio in batch  /  Stacca batch  /  Comprimi in lotti  /  Salvataggio automatico   /  Scollegamento automatico  /  Comprimi automaticamente ...

🌟 Magia dell'interfaccia: 😊Più emoji carini e fantastici   /  Aumenta la tua produttività in Outlook con le visualizzazioni a schede  /  Riduci a icona Outlook invece di chiuderlo ...

👍 Meraviglie con un clic: Rispondi a tutti con gli allegati in arrivo  /   E-mail anti-phishing  /  🕘Mostra il fuso orario del mittente ...

👩🏼‍🤝‍👩🏻 Contatti e calendario: Aggiungi in batch contatti dalle email selezionate  /  Dividere un gruppo di contatti in singoli gruppi  /  Rimuovi promemoria compleanno ...

Al di sopra Caratteristiche 100 Attendi la tua esplorazione! Clicca qui per scoprire di più.

 

 

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