在gmail和其他邮件客户端中,可以使用所谓的回执来判断是否打开了电子邮件。(如果有其他术语,请告诉我)。在mailutils命令行程序中有这样的功能吗?如果是的话,我该如何使用呢?
发布于 2017-10-14 21:10:29
它基本上是消息中的一个标志,它要求读取器的客户端返回收据。大多数客户端在发送收据之前都会询问用户,所以这并不能保证您会收到收据。
请求以电子邮件标题的形式发送。使用mailutils,您不能更改要发送的邮件的标题。我建议您改用mutt。它比邮件要复杂一点--在每个平台上,狗狗都是杂种狗,而不同平台的邮件则有很大的不同。当然,狗狗可以随心所欲地发送邮件。
从布特的主页上说:
-H草案指定一个草案文件,其中包含用于发送消息的标题和正文。
这显然可以用于在电子邮件中插入任意标题。文件(或stdin) draft应该采用以下格式:
From: example@example.org
To: example@example.com
Return-Receipt-To: myself@example.org
Subject: Please confirm when you've read t From: example@example.org
To: example@example.com
Return-Receipt-To: myself@example.org
Subject: Please confirm when you've read this!
This is the body of the message.这当然可以通过stdin发送,运行<some command to generate the e-mail> | mutt -H -
除了Return-Receipt-To:头之外,您还可以尝试其他标题,如X-Confirm-Reading-To:或Disposition-Notification-To:。
https://askubuntu.com/questions/964947
复制相似问题