Saltar al contenido principal

Outlook: recordatorio automático cuando se olvidan los archivos adjuntos en los mensajes

Puede ser un dolor de cabeza olvidarse de agregar archivos adjuntos, pero recuerde a los destinatarios que verifiquen los archivos adjuntos en el cuerpo del mensaje de correo electrónico. Aquí presentaremos dos trucos sobre cómo recordarse automáticamente cuando envía un mensaje de correo electrónico al que pueden faltar archivos adjuntos en Microsoft Outlook.

Recordatorio automático al olvidar archivos adjuntos en Outlook 2013/2016

Recordatorio automático al olvidar archivos adjuntos en Outlook 2007 y 2010

eliminar todos los contactos duplicados de una o varias carpetas de contactos en Outlook

En ocasiones, podemos agregar repetidamente los mismos contactos, ¿cómo podemos eliminar los contactos duplicados de una o varias carpetas de contactos? Kutools para Outlook's Duplicate Contacts La función puede eliminar o fusionar contactos duplicados rápidamente según los correos electrónicos, el nombre completo u otros criterios de una o más carpetas de contactos.    ¡Haga clic para obtener una prueba gratuita de 45 días!
doc eliminar contactos duplicados 1
 
Kutools para Outlook: con docenas de prácticos complementos de Outlook, prueba gratis sin limitación en 45 días.
Pestaña Office: habilite la edición y navegación con pestañas en Microsoft Office, haciendo que el trabajo sea muy sencillo
Kutools para Outlook: mejore Outlook con más de 100 funciones avanzadas para una eficiencia superior
Mejore su Outlook 2021 - 2010 o Outlook 365 con estas funciones avanzadas. ¡Disfruta de una prueba completa gratuita de 60 días y mejora tu experiencia de correo electrónico!

flecha azul burbuja derechaRecordatorio automático al olvidar archivos adjuntos en Outlook 2013/2016

Microsoft Outlook 2013 admite la función de advertirle automáticamente cuando envía un mensaje de correo electrónico que puede no tener archivos adjuntos.

Paso 1: haga clic en Archive > Opciones.

Paso 2: en el cuadro de diálogo Opciones de Outlook, haga clic en el Correo en la barra izquierda

Paso 3: Debes ir a Enviar mensajes sección, y siga marcando la opción de Avisarme cuando envíe un mensaje que puede no tener un archivo adjunto.

Paso 4: haga clic en OK para salir de este cuadro de diálogo.

Entonces Microsoft Outlook 2013 o 2016 le advertirá automáticamente si puede olvidar los archivos adjuntos.

Por ejemplo, ingresa el texto de "por favor revise los archivos adjuntos,ver archivos adjuntos", Etc. en el cuerpo del mensaje, pero no inserte archivos adjuntos en el Adjuntar archivo campo. Al hacer clic en el Enviar , aparecerá un cuadro de diálogo de advertencia para indicarle que es posible que haya olvidado adjuntar un archivo. Vea la siguiente captura de pantalla:


flecha azul burbuja derechaRecordatorio automático al olvidar archivos adjuntos en Outlook 2007 y 2010

Microsoft Outlook 2007 y 2010 no admiten la advertencia automática si olvida los archivos adjuntos. Una macro de VBA puede ayudarlo a darse cuenta.

Paso 1: Presione el otro + F11 teclas para abrir la ventana de Microsoft Visual para aplicaciones.

Paso 2: Extienda el Proyecto 1 en la barra izquierda y haga doble clic en el Esta sesión de Outlook Para abrirlo.

Paso 3: Pegue el siguiente código en la ventana ThisOutlookSession.

VBA: Advertencia si no inserta el archivo adjunto

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

Paso 4: haga clic en Guardar botón en la barra de herramientas.

De ahora en adelante, si agrega el texto de "accesorio"En el cuerpo del mensaje, pero no adjunte archivos, aparecerá un recordatorio de advertencia para indicarle que es posible que haya olvidado adjuntar un archivo cuando haga clic en Enviar botón. Ver captura de pantalla:


Las mejores herramientas de productividad de oficina

Kutools para Outlook - Más de 100 potentes funciones para potenciar tu perspectiva

🤖 Asistente de correo AI: Correos electrónicos profesionales instantáneos con magia de IA: respuestas geniales con un clic, tono perfecto y dominio multilingüe. ¡Transforme el correo electrónico sin esfuerzo! ...

📧 Automatización de correo electrónico: Fuera de la oficina (disponible para POP e IMAP)  /  Programar envío de correos electrónicos  /  CC/CCO automático según reglas al enviar correo electrónico  /  Reenvío automático (reglas avanzadas)   /  Agregar saludo automáticamente   /  Divida automáticamente correos electrónicos de múltiples destinatarios en mensajes individuales ...

📨 Gestión de correo electrónico: Recuperar correos electrónicos fácilmente  /  Bloquear correos electrónicos fraudulentos por sujetos y otras personas  /  Eliminar correos electrónicos duplicados  /  Búsqueda Avanzada  /  Consolidar carpetas ...

📁 Archivos adjuntos profesionalesGuardar lote  /  Separación de lotes  /  Comprimir por lotes  /  Ahorro automático   /  Desconexión automática  /  Autocompresión ...

???? Interfaz mágica: 😊Más emojis bonitos y geniales   /  Aumente su productividad en Outlook con vistas con pestañas  /  Minimizar Outlook en lugar de cerrar ...

👍 Maravillas con un clic: Responder a todos los archivos adjuntos entrantes  /   Correos electrónicos antiphishing  /  🕘Mostrar zona horaria del remitente ...

👩🏼‍🤝‍👩🏻 Contactos y calendario: Agregar por lotes contactos de correos electrónicos seleccionados  /  Dividir un grupo de contactos en grupos individuales  /  Eliminar recordatorios de cumpleaños ...

Mas de Características 100 ¡Espere su exploración! Haga clic aquí para descubrir más.

Leer Mas       Descargar gratis      Comprar
 

 

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