如何关闭Outlook.com的新“欢乐动画”

本文介绍了如何在Outlook Web应用程序中关闭新添加的'快乐动画'功能。当邮件中出现诸如'祝贺'或'生日快乐'等词汇时,这些动画会导致屏幕闪烁。要关闭此功能,用户需要进入设置,选择'电子邮件'设置,然后在'撰写和回复'部分取消选中'在阅读窗格中显示愉快的动画'选项,最后点击保存即可。

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

outlook logo

Microsoft recently added “joyful animations” to the Outlook web app. These show a shower of glitter whenever Outlook detects “joyful” words like “Congratulations” or “Happy Birthday.” Here’s how to turn them off.

微软最近向Outlook Web应用程序添加了“欢乐的动画”。 每当Outlook检测到“祝贺”或“生日快乐”之类的“快乐”字眼时,这些消息就会闪闪发光。 这是关闭它们的方法。

First and foremost, let us just say that here at How-To Geek we’re in no way anti-glitter. Well, other than the fact that actual glitter and computers don’t really go well together, which is why you should clean your hardware regularly. But there’s a time and a place for sparkle, and work email isn’t it. Many of you might feel the same about your personal email, too.

首先,我们要说的是,在How-To Geek,我们绝不是反闪光的。 好吧,除了实际的闪光和计算机不能很好地配合使用,这就是为什么您应该定期清洁硬件的原因。 但是,有一个时间和一个闪闪发光的地方,不是工作电子邮件。 你们中的许多人也可能对您的个人电子邮件有相同的感觉。

The “joyful animations” appear when a mail you’ve received is shown in the reading pane of the Outlook web app. Any words deemed “joyful” are highlighted, and when you move your mouse over them a shower of glitter is displayed, rising and falling like a primary colored firework fading into the wind.

当Outlook Web App的阅读窗格中显示您收到的邮件时,将显示“欢乐的动画”。 任何被认为是“快乐”的词都会突出显示,当您将鼠标移到它们上方时,会显示出闪烁的闪光,其升起和落下的效果就像彩色的烟火在风中飘落。

Note: These animations are only available in the modern version of the Outlook web app. If you’re still using the classic version, you won’t see them.

注意:这些动画仅在现代版本的Outlook Web App中可用。 如果您仍在使用经典版本,则不会看到它们。

Celebratory words and a joyful animation of glitter

How lovely. Here’s how to turn that stuff off. Click the Settings cog and then click “View all Outlook settings.”

多么可爱。 这是关闭这些东西的方法。 单击设置齿轮,然后单击“查看所有Outlook设置”。

The Outlook settings option.

Switch to the “Email” settings and then click “Compose and reply.”

切换到“电子邮件”设置,然后单击“撰写并回复”。

The "Compose and reply" option.

On the right-hand side, scroll down, untick the “Show joyful animations in the reading pane” check box, and then click Save.

在右侧,向下滚动,取消选中“在阅读窗格中显示愉快的动画”复选框,然后单击“保存”。

The "joyful animations" setting

Congratulations! You’ll no longer see glitter when you receive an email with a “joyful” word.

恭喜你! 收到带有“欢乐”字样的电子邮件时,您将不再看到闪光。

翻译自: https://www.howtogeek.com/424734/how-to-turn-off-outlook.coms-new-joyful-animations/

### 配置 Outlookoutlook.live.com 的 SMTP 服务 #### 开启 SMTP 服务的方法 对于 Outlookoutlook.live.com,启用 SMTP 服务的过程略有不同。以下是具体的操作说明。 #### 对于 Outlook 客户端: 如果使用的是桌面版 Outlook,则需要通过账户设置来激活 SMTP 功能。通常情况下,默认会自动配置这些选项[^1]。然而,在某些特定场景下可能需要手动调整: - 登录到您的电子邮件客户端并导航至 **文件 -> 帐号设置 -> 更改邮箱账号**。 - 在高级选项卡中确认已选择了支持的协议(IMAP 或 POP3),以及对应的 SMTP 设置是否正确填充。 #### 对于 Web 版本 (outlook.live.com): 针对基于浏览器访问的服务提供商而言,其本身并不提供直接界面让用户单独打开SMTP功能开关。相反地,它依赖于全局安全策略或者第三方应用权限授予机制完成类似操作: - 用户需前往微软在线门户的安全中心页面开启额外的应用程序访问许可; - 接着按照官方指引完成OAuth认证流程以便允许外部系统调用相关API接口实现邮件投递等功能[^3]。 #### 具体的技术参数如下所示: 当涉及到实际编码层面时,可以参照下面给出的例子来进行相应环境下的适配工作。这里展示了一个利用Java Mail API连接Office 365 SMTP服务器发送简单纯文本消息的小例子[^4]: ```java Properties props = new Properties(); props.put("mail.smtp.auth", "true"); props.put("mail.smtp.starttls.enable", "true"); // 启用 STARTTLS 加密模式 props.put("mail.smtp.host", "smtp.office365.com"); props.put("mail.smtp.port", "587"); Session session = Session.getInstance(props, new javax.mail.Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("your-email@domain.com","password"); } }); try { Message message = new MimeMessage(session); message.setFrom(new InternetAddress("from-email@domain.com")); message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("to-email@example.org")); message.setSubject("Test Email via JavaMail with Office365"); message.setText("This is a test email sent through the JavaMail API using Office365's SMTP server."); Transport.send(message); } catch (MessagingException e) { throw new RuntimeException(e); } ``` 上述脚本片段展示了如何构建一个基本的消息对象并通过指定的身份验证细节将其传递给目标收件箱列表中的成员们。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值