如何在Outlook中的電子郵件上顯示快速操作按鈕

outlook logo

There are probably actions you regularly perform in Outlook, such as deleting, archiving, and marking things as read. Here’s how to use Quick Action buttons to add one-click options that appear over every email to perform each action.

您可能會在Outlook中定期執行某些操作,例如刪除,歸檔和將內容標記為已讀。 這是使用“快速操作”按鈕添加在所有電子郵件上顯示的一鍵式選項的方法,以執行每個操作。

You’ve probably seen Quick Action buttons in Outlook already but never really took much notice of them. They appear when your cursor is hovering over an email. By default, the buttons show the Follow Up flag and the Delete bin icons.

您可能已經在Outlook中看到了“快速操作”按鈕,但從未真正注意到它們。 當您的光標懸停在電子郵件上時,它們會出現。 默認情況下,按鈕顯示“跟進”標志和“刪除箱”圖標。

The default Quick Action buttons.

If you click one of the buttons, it performs the named action. In this case, marking the email to be followed up or moving it to the Deleted Items folder. You can change the Quick Action buttons to any of the following five actions:

如果單擊其中一個按鈕,它將執行命名操作。 在這種情況下,標記要跟進的電子郵件或將其移動到“已刪除郵件”文件夾。 您可以將“快速操作”按鈕更改為以下五個操作中的任何一個:

  • Archive

    封存
  • Delete

    刪除
  • Move

    移動
  • Flag/ Clear Flag (this is the Follow Up flag)

    標記/清除標記(這是“跟進”標記)
  • Mark as Read/Unread

    標記為已讀/未讀

To change the buttons, click Home > Follow Up. Next, in the menu that appears, select the “Set Quick Actions” option.

要更改按鈕,請單擊主頁>后續。 接下來,在出現的菜單中,選擇“設置快速操作”選項。

The Follow Up menu with "Set Quick Actions" highlighted.

This will bring up the Quick Actions panel.

這將彈出“快速操作”面板。

The "Quick Actions" panel.

Select the options you want to be displayed in the two Quick Action slots using the dropdowns and then click “OK.”

使用下拉菜單選擇要在兩個“快速操作”插槽中顯示的選項,然后單擊“確定”。

The "Quick Actions" panel with the 2 dropdowns highlighted.

The Delete action will always be available no matter which options you choose, so really, you can choose any two Quick Actions plus the Delete option. In this example, we’ve chosen “Archive” and “Mark as Read/Unread” which display next to the Delete option.

無論選擇哪個選項,“刪除”操作將始終可用,因此,實際上,您可以選擇任意兩個快速操作以及“刪除”選項。 在此示例中,我們選擇了“存檔”和“標記為已讀/未讀”,它們顯示在“刪除”選項旁邊。

The Quick Action buttons with the new choices.

You can also choose Delete plus one other Quick Action from the dropdown if you don’t want quick access to other actions.

如果您不想快速訪問其他操作,也可以從下拉菜單中選擇“刪除”和其他“快速操作”。

A really useful feature is the ability to select multiple emails and then apply the Quick Action to all of them at once. Select the messages you want to apply the Quick Action to, hover over any one of the emails, and then select the Quick Action.

一個真正有用的功能是能夠選擇多封電子郵件,然后一次將“快速操作”應用于所有電子郵件。 選擇您要應用“快速操作”的郵件,將鼠標懸停在任何一封電子郵件上,然后選擇“快速操作”。

Multiple emails selected with the Quick Action buttons highlighted.

All of the selected emails will have the Quick Action applied to them. This is a quick and simple way to make managing your emails just a little bit less work.

所有選定的電子郵件都將應用快速操作。 這是一種快速簡單的方法,可以減少電子郵件的管理工作量。

翻譯自: https://www.howtogeek.com/450564/how-to-show-quick-action-buttons-over-your-email-in-outlook/

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/278390.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/278390.shtml
英文地址,請注明出處:http://en.pswp.cn/news/278390.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

c++讀取和寫入TXT文件的整理

c讀取和寫入TXT文件的整理 #include "stdafx.h" #include <iostream> //無論讀寫都要包含<fstream>頭文件 #include <fstream> #include <iomanip> using namespace std;int main() {//ifstream從文件流向內存的ifstream表示文件輸入流…

使用RestTemplate時報錯java.lang.IllegalStateException: No instances available for 127.0.0.1

我在RestTemplate的配置類里使用了 LoadBalancedComponentpublic class RestTemplateConfig { Bean LoadBalanced public RestTemplate restTemplate(){ return new RestTemplate(); }}或者 再調用Autowiredprivate RestTemplate restTemplate;必須使用應用名作為代替ip:端口&a…

sh變量特性(3)默認特性

變量說明$0當前腳本的文件名$n傳遞給腳本或函數的參數&#xff0c;n是數字&#xff0c;第n個參數$#傳遞給腳本或函數的參數個數$*傳遞給腳本或函數的所有參數$傳遞給腳本或函數的所有參數。被””包含時&#xff0c;與$*稍有不同$?上個命令的退出狀態&#xff0c;或函數返回值…

zune linux_更新您的Zune Player軟件

zune linuxKeeping your computer and software up to date is very important in keeping everything running smooth and secure. It’s also important to keep your geeky gadgets updated as well. Here we take a look at updating a Zune HD. 保持計算機和軟件的最新狀態…

繼承的幾種方式

1.借助構造函數實現繼承 function Parent() { this.name parent } Parent.prototype.say function () { // 不能被繼承 this.say function() { console.log(hello this.name) } } function Child() { Parent.call(this) this.type child } console.log(new Child) // 沒有參…

寫一個簡單的 django_post demo

1.新建一個django工程&#xff0c;其路由為下圖 2.要做的是一個 簡單的登錄請求&#xff0c;以表單形式提交&#xff0c;html 部分代碼如下 這里注意action指向的是路由的地址&#xff0c;index1后的views.login部分代碼如下 這段代碼指的是&#xff0c;如果login接收到的請求是…

日志收集

2019獨角獸企業重金招聘Python工程師標準>>> ELK (ElasticSearch、Logstash、Kibana)&#xff1a; https://my.oschina.net/itblog/blog/547250 轉載于:https://my.oschina.net/zfscofield/blog/1625703

autocopy2u_借助AutoCopy簡化Firefox中的文本復制和粘貼

autocopy2uLooking for an easy way to speed up copying and pasting in Firefox? Now you can reduce the amount of work that you have to do by half with AutoCopy. 是否在尋找一種簡便的方法來加快Firefox中的復制和粘貼&#xff1f; 現在&#xff0c;您可以使用自動復…

virtualenv模塊使用

開發多個應用&#xff1a; 如A需要jinja2.7開發&#xff1b;如B需要jinja2.6開發。或者C需要Python2.7開發&#xff0c;D需要Python3.5開發 那么解決上述問題就需要使用virtualenv這個模塊&#xff1a; 它的作用是&#xff1a;創建“隔離”環境&#xff0c;使項目擁有獨立的Pyt…

僵尸進程處理方式

Linux服務器上&#xff0c;多少會出現一些僵尸進程&#xff0c;下面介紹如何快速尋找和消滅這些僵尸進程的方法 首先&#xff0c;我們可以用top命令來查看服務器當前是否有僵尸進程&#xff0c;在下圖中可以看到僵尸進程數的提示&#xff0c;如果數字大于0&#xff0c;那么意味…

chromebook刷機_如何查看Chromebook的停產日期

chromebook刷機Google谷歌There comes a time in your Chromebook’s life when it no longer receives updates from Google. It’s inevitable and could be a lot sooner than you think. Here’s how to see your Chromebook’s scheduled end-of-life date. Chromebook一生…

C#將unix時間戳轉換成.net的DateTime類型的代碼

下面的內容是關于C#將unix時間戳轉換成.net的DateTime類型的內容。 DateTime epoch new DateTime(1970,1,1,0,0,0,0, DateTimeKind.Utc);DateTime myDate epoch.AddSeconds(1258598728).toLocalTime(); 轉載于:https://www.cnblogs.com/odsxe/p/10338494.html

【活動】AI人工智能技術沙龍 |杭州站

AI人工智能技術沙龍 |杭州站將于2018年3月3號在浙江杭州市文一西路1818-2號中國&#xff08;杭州&#xff09;人工智能小鎮舉辦由袋鼠云、七牛云及“因特鏈”社區的老師為大家帶來AI純技術干貨分享另有區塊鏈和AI人工智能技術融合技術主題1活動安排時間&#xff1a;2018年3月3號…

如何在Google文檔中的圖片周圍換行

If you want to insert an image or object into a document, it’s relatively simple. However, positioning and getting them to stay where you want can be frustrating. The wrap text feature in Google Docs makes all of this more manageable. 如果要將圖像或對象插…

mysql的left函數

1、LEFT()函數是一個字符串函數&#xff0c;它返回具有指定長度的字符串的左邊部分。 LEFT(Str,length); 接收兩個參數&#xff1a; str&#xff1a;一個字符串&#xff1b; length&#xff1a;想要截取的長度&#xff0c;是一個正整數&#xff1b; 2、示例&#xff1a; SELECT…

如何在Linux上使用history命令

Fatmawati Achmad Zaenuri/ShutterstockFatmawati Achmad Zaenuri / ShutterstockLinux’s shell saves a history of the commands you run, and you can search it to repeat commands you’ve run in the past. Once you understand the Linux history command and how to u…

mysql導入sqlserver數據庫表

原文&#xff1a;https://zhidao.baidu.com/question/1114325744502691499.html 在Navicat for MySQL 管理器中&#xff0c;創建目標數據庫(注意&#xff1a;因為是點對點的數據導入&#xff0c;要求sql server 中要導出的數據庫名稱和要導入到Mysql 中的數據庫的名字相同)點擊…

AppleScript

AppleScript 后綴名scpt do shell script "shell腳本"轉載于:https://www.cnblogs.com/yangwenhuan/p/10338580.html

ER圖三元聯系簡介

數據庫設計時&#xff0c;遇到三元聯系怎樣確定&#xff0c;下面做個簡單介紹。 一、確定聯系 三元聯系共 4 種情況&#xff1a; 1 &#xff1a; 1 &#xff1a; 11 &#xff1a; 1 &#xff1a; N1 &#xff1a; M &#xff1a; NM &#xff1a; N &#xff1a; P1 &#xff1…

mac自帶郵箱導出郵件_如何將電子郵件從Mac Mail導出到Notes應用程序

mac自帶郵箱導出郵件Khamosh PathakKhamosh PathakIf you use the Mail app regularly, you’re used to archiving or flagging emails for later. But what if you want to save a particular message for future reference in the Notes app? Well, there’s a work-around…