outlook发件箱发两次_Outlook快速提示:清除挂起的发件箱

本文介绍了一种快速解决Outlook发件箱堵塞的方法。当邮件因附件过大(约5MB及以上)无法正常发送时,可以采用离线工作模式,调整附件大小或更换传输方式来解决问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

outlook发件箱发两次

outlook发件箱发两次

Today we will look at a quick way to easily clear out a clogged outbox.  Perhaps you have ran into this scenario when after sending an email you see a message or two hanging in the outbox.  This usually happens if there are attachments that are too large (approximately 5MB or larger) to be easily sent.

今天,我们将研究一种快速清除发件箱堵塞的快速方法。 发送电子邮件后,在发件箱中看到一两个消息挂起时,您可能遇到了这种情况。 如果附件太大(大约5MB或更大)而无法轻松发送,通常会发生这种情况。

When there is an email stuck in the outbox you will see something similar to the screen below.

发件箱中有一封电子邮件时,您将看到类似于以下屏幕的内容。

1

When you open the Outbox folder and try to stop the mail you will get an error message.

当您打开发件箱文件夹并尝试停止邮件时,您将收到一条错误消息。

2

To stop the message from transmitting go to File Work Offline.

要停止发送消息,请转至脱机工作

1

Now you can go into the Outbox folder and open the email message and scale down the amount of attachments,compress the current one, or remove it all together and use another method to transfer the file.  When your finished just go back to File Work Offline and uncheck it so email will start working again.

现在,您可以进入“发件箱”文件夹,打开电子邮件并按比例缩小附件的数量,压缩当前附件,或将其全部删除,然后使用另一种方法传输文件 。 完成后,只需返回到脱机工作文件并取消选中它,以便电子邮件将再次开始工作。

1

翻译自: https://www.howtogeek.com/80067/outlook-quick-tip-clear-out-a-hanging-outbox/

outlook发件箱发两次

VBA (Visual Basic for Applications) 是一种宏语言,常用于Microsoft Office应用程序中自动化任务,包括在Outlook中操作邮件。如果你想在Outlook发件箱中查找特定的邮件,你可以编写一段VBA脚本,其基本步骤如下: 1. **启动宏**: 首先,你需要打开Visual Basic编辑器,在Outlook窗口中选择“开工具”-> “Visual Basic”。 2. **创建新模块**: 在VB编辑器中,右键点击“插入”,然后选择“模块”,这将为你提供编写VBA代码的空间。 3. **编写搜索代码**: 编写如下的VBA代码片段,它会搜索发件箱中的邮件: ```vba Sub SearchEmail() Dim olApp As Outlook.Application Dim olNs As Outlook.Namespace Dim olFolder As Outlook.MAPIFolder Dim olMail As Outlook.MailItem ' 创建Outlook对象 Set olApp = New Outlook.Application Set olNs = olApp.GetNamespace("MAPI") ' 设置收件箱作为搜索范围 Set olFolder = olNs.GetDefaultFolder(olFolderInbox) ' 搜索条件(例如标题、送者等) Dim searchStr As String searchStr = "关键词" ' 将此处替换为你要查找的关键字 ' 开始搜索 For Each olMail In olFolder.Items.Restrict("[Subject] like '" & searchStr & "'") ' 这里可以添加处理找到邮件的操作,比如打印邮件信息 Debug.Print olMail.Subject Next olMail ' 清理并退出 Set olMail = Nothing Set olFolder = Nothing Set olNs = Nothing Set olApp = Nothing End Sub ``` 4. **运行脚本**: 保存你的代码后,点击立即运行(F5)或者通过VBA菜单运行这个宏。 记得将`searchStr`变量中的"关键词"替换为你想要查找的实际内容。如果邮件存在,程序会打印出匹配的邮件主题。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值