vba发送邮件 签名_如何更改“从Windows 10的邮件发送”签名

vba发送邮件 签名

vba发送邮件 签名

00_lead_image_email_with_signature

The Windows 10 Mail app is a decent email client that allows you to add other email accounts in addition to your Microsoft accounts. You’ll notice, though, that any emails you write in the Mail app have a default signature.

Windows 10 Mail应用程序是一个不错的电子邮件客户端,它允许您添加Microsoft帐户之外的其他电子邮件帐户。 但是,您会注意到,在“邮件”应用中编写的所有电子邮件都具有默认签名。

Microsoft assumes you want to tell everyone that you’re using their Mail app by adding a “Sent from Mail for Windows 10” signature to all your emails, even non-Microsoft accounts. If you’d rather use a custom signature or no signature at all, it’s easy to change or disable the signature for each account.

Microsoft假设您想通过向所有电子邮件(甚至是非Microsoft帐户)添加“从Windows 10的邮件发送”签名来告诉所有人您正在使用他们的Mail应用程序。 如果您要使用自定义签名或根本不使用签名,则可以轻松更改或禁用每个帐户的签名。

To begin, open the Mail app and click the Settings gear icon on the vertical toolbar in the lower-left corner of the window.

首先,打开“邮件”应用程序,然后单击窗口左下角垂直工具栏上的“设置”齿轮图标。

01_clicking_settings

On the Settings pane that slides out on the right, click the “Signature” option.

在右侧滑出的“设置”窗格上,单击“签名”选项。

04_clicking_signature

The Signature pane displays on the right, with options for setting or disabling the signature. You can do this separately for each account or for all accounts at once. Select the account for which you want to change or disable the signature from the “Select an account” drop-down list.

签名窗格显示在右侧,其中包含用于设置或禁用签名的选项。 您可以分别为每个帐户或所有帐户分别执行此操作。 从“选择帐户”下拉列表中选择要更改或禁用签名的帐户。

05_choosing_an_account

If you want to use the same signature for all accounts in Mail, check the “Apply to all account” box.

如果要对邮件中的所有帐户使用相同的签名,请选中“应用于所有帐户”框。

06_apply_to_all_accounts

To disable the signature for the selected account or all accounts, click the “Use an email signature” slider button so if says Off.

要禁用所选帐户或所有帐户的签名,请单击“使用电子邮件签名”滑块按钮,如果显示“关闭”。

07_turning_email_signature_off

To use a custom signature in the selected account or all accounts, enter text in the box below the Use an email signature slider button. You can enter multiple lines of text, but you can’t add hyperlinks, change the font or font color, or add images. Click anywhere to the left of the Signature pane to close it.

要在所选帐户或所有帐户中使用自定义签名,请在“使用电子邮件签名”滑块按钮下方的框中输入文本。 您可以输入多行文本,但是不能添加超链接,更改字体或字体颜色或添加图像。 单击“签名”窗格左侧的任意位置以将其关闭。

NOTE: The default signature in Mail contains a link on the word Mail that takes you to the Mail app’s page on the Microsoft Store. If you replace the default signature with your own text, you will lose that link, even if you enter the default message again, because you can’t add hyperlinks.

注意:Mail中的默认签名在Mail一词上包含一个链接,可将您带到Microsoft Store上的Mail应用程序页面。 如果用您自己的文本替换默认签名,即使您再次输入默认消息,也会丢失该链接,因为您无法添加超链接。

08_changing_signature_text

Now, when you create a new email message by clicking “New mail” on the left panel…

现在,当您通过单击左侧面板上的“新邮件”来创建新电子邮件时...

09_clicking_new_mail

…you’ll see your new signature automatically added to the new message, or no signature at all, if you disabled it.

…您会看到您的新签名已自动添加到新消息中,或者如果您将其禁用,则根本没有签名。

10_new_signature

If you are currently composing a new email or a reply/forward when you change your signature, the signature in that email will not change to the new signature or be deleted if you disabled the signature. The same is true for drafts you have saved.

如果在更改签名时当前正在撰写新电子邮件或回复/转发,则该电子邮件中的签名将不会更改为新签名,或者在禁用签名后将被删除。 保存的草稿也是如此。

翻译自: https://www.howtogeek.com/136968/how-to-change-or-disable-the-default-sent-from-windows-mail-email-signature/

vba发送邮件 签名

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/280783.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JAVA_SE基础——24.面向对象的内存分析

黑马程序猿入学blog ... 接着上一章的代码: //车类 class Car{//事物的公共属性使用成员变量描写叙述。String name; //名字的属性 String color; //颜色属性 int wheel; //轮子数 //事物的公共行为使用函数描写叙述。 public void run(){ System.out.println(name&…

煮茶社区AVR开发板第二版[转]

原图:http://blossom.cnblogs.com/gallery/image/21891.html

[Kogel.Subscribe.Mssql]SQL Server增量订阅,数据库变更监听

此框架是SQL Server增量订阅,用来监听增删改数据库数据变更目前仅支持SQL Server,后续会支持MySQL和Oracle,Nuget上可以下载安装或者使用Nuget命令添加包dotnet add package Kogel.Subscribe.Mssql --version 0.0.0.1可以用来处理DB主从同步&…

java instanceof运算符

instanceof 运算符 该运算符用于操作对象实例,检查该对象是否是一个特定类型(类类型或接口类型)。 instanceof运算符使用格式如下: ( Object reference variable ) instanceof (class/interface type) 如果运算符左侧变量所指的对…

C# XML添加删除/SelectNodes/xpath

SelectNodes中的XPath //从当前节点的儿子节点中选择名称为 item 的节点。 SelectNodes("item")//从根节点的儿子节点中选择名称为 item 的节点。 SelectNodes("/item")// 从任意位置的节点上选择名称为 item 的节点。要重点突出这个任意位置,…

Python中*args 和**kwargs的用法

http://blog.csdn.net/chenjinyu_tang/article/details/8136841 好久没有学习python了,应为工作的需要,再次拾起python,唤起记忆。 当函数的参数不确定时,可以使用*args 和**kwargs,*args 没有key值,**kwar…

MFC载入JPG图片

## 1.定义画图函数 HRESULT CIPCamDlg::draw(char *lpImageFile, HWND hWnd, int nScrWidth, int nScrHeight) {HDC hDC_Temp::GetDC(hWnd);IPicture *pPic; IStream *pStm;BOOL bResult;HANDLE hFileNULL; DWORD dwFileSize,dwByteRead;hFileCreateFile(lpImageFile,GENERIC_R…

DLR 的扩展库 Dynamitey

.NET 在 CLR 对动态语言或者脚本语言的支持是通过DLR 完成的, Miguel de Icaza对 DLR 的特点概括如下:一个针对动态语言的共享式类型系统;一个共享的 AST,可以被语言开发人员用来创建新的动态语言;针对编译器开发人员的…

MFC 单选按钮Radio使用注意

使用MFC Radio时遇到问题:数据交换时出现断言崩溃框 定位于: 解决方法: 1、按CTRLD,保证同一组内的radio的tab序号是连续的; 2、同一组内,设置 radio1的属性: group、tabstop、auto均为true&am…

C# 字符串操作:split、substring、Format

1.split split可以使用多个字符切割。 "test[12]"切割后是3个字符串,最后一个为空。 string testString "test[12]";string[] testData testString.Split([,]);int testLength testData.Length;Console.WriteLine(testLength.ToString());…

flac格式转换mp3格式_MP3,FLAC和其他音频格式之间有什么区别?

flac格式转换mp3格式Digital audio has been around a very long time so there’s bound to be a plethora of audio formats out there. Here are some of the more common ones, what differentiates them, and what to use them for. 数字音频已经存在了很长时间&#xff…

Kubernetes:Flomesh 服务网格与多集群通信

Kubernetes 成功普及了容器集群的概念。许多用户已经在多个集群中部署应用,组织需要运行多个 Kubernetes 集群可能来自以下原因(并非详尽列表):• 位置• 延迟(尽可能在靠近客户的地方运行应用程序)• 管辖…

Java四种线程池的使用

FixedThreadPool 由Executors的newFixedThreadPool方法创建。它是一种线程数量固定的线程池,当线程处于空闲状态时,他们并不会被回收,除非线程池被关闭。当所有的线程都处于活动状态时,新的任务都会处于等待状态,直到有…

袁永福软件行业从业经历

简化版》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》 袁永福简历 袁永福,男,1980年生于江西省九江市都昌县,2001年南京东南大学动力工程系本科毕业。毕业后一直从事计算机软件开发工作&…

小程序之地图导航

同学们平常使用地图的时候应该都有注意到,当我们在一个应用中选择一个地址,打开一个地图,往往会有两种显示方式,一个是显示当前自己的位置;一个是显示对方,也就是目的地的位置;如下图&#xff1…

PS2019摄影后期处理(一)

高高手之路笔记 一、学习方法 内外兼修:技术会淘汰、更新,自己内在也要提高。 二、照片格式、色彩空间 JPEG TIFF RAW sRGB:互联网相关图片,电子设备 三、照片风格 自己定义照片格式,直接后期效果 相机自带工具&a…

mdnsresponder_什么是mDNSResponder.exe / Bonjour,如何卸载或删除它?

mdnsresponderYou are no doubt reading this article because you’ve noticed the mDNSResponder.exe process running in Task Manager, you don’t remember installing it, and it doesn’t show up in the Add/Remove programs in Control Panel. So what is it, and how…

Windows 10下,如何使用PowerShell批量重启局域网电脑

PowerShell 在Windows 10中越来越受到微软重视,甚至被微软安排在开始按钮超级菜单中替换了一直以来默认的命令提示符(当然还可以换回去),这和该工具越来越强大密不可分。这次就介绍一个“群重启”命令,可让局域网内的电脑集体重启。1、单机重…

.NET MAUI学习指南

由于.NET MAUI这项技术出来不久相关的学习资源暂时除了官网以外没有太好的学习资源,这篇文章主要向大家分享几种学习.NET MAUI的学习途径,如果有好的学习资源欢迎大家私信给我然后更新到后续的文章里。(以下推荐学习途径均为免费且无广告的资…

循序渐进DB2(第2版)——DBA系统管理、运维与应用案例

《循序渐进DB2(第2版)——DBA系统管理、运维与应用案例》基本信息作者: 牛新庄出版社:清华大学出版社ISBN:9787302323013上架时间:2013-7-3出版日期:2013 年7月开本:16开页码:612版次&#xff1…