我在linux PC上运行python脚本,并在脚本失败时使用'mailx'命令发送电子邮件。命令如下所述,
Alert User <alertuser@x26611-testbuntu04.unassigned-domain>
在这种情况下,用户'abc'&amp; 'def'在他的Outlook客户端发送电子邮件,发件人为
Alert User <alertuser@x26611-testbuntu04.unassigned-domain>
(这是一个虚拟电子邮件)。 当任何用户尝试全部回复时,它会将副本发送到
Distribution: Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-135-generic x86_64)
也是。我不希望这种情况发生。 如何通过在发送脚本故障电子邮件本身时指定我自己的 Reply-To 电子邮件列表来编写mailx命令。
我在下面使用,
$ dpkg -s mailutils
Package: mailutils
Status: install ok installed
Priority: optional
Section: mail
Installed-Size: 1674
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Architecture: amd64
Version: 1:2.99.98-1.1
Provides: mail-reader, mailx
&安培;
被修改
HtmlWebViewSource personHtmlSource = new HtmlWebViewSource();
personHtmlSource.SetBinding(HtmlWebViewSource.HtmlProperty, "HTMLDesc");
personHtmlSource.Html = @"<html><body> <div style=' position: relative; padding-bottom: 56.25%; padding-top: 25px;'> <iframe style='position: absolute; top: 0; left: 0; width: 100%; height: 100%;' src='https://www.youtube.com/embed/bVdfj7HXuXE' frameborder='0' allowfullscreen></iframe></div> </body></html>";
var browser = new WebView();
browser.Source = personHtmlSource;
Content = browser;
答案 0 :(得分:0)
如果您使用的mailx
版本支持使用-a
选项添加自定义标题,就像您已经使用-a 'Content-type: text/html'
一样,那么您可以再次使用标题提供它想; -a 'Reply-to: you@example.net'
依赖于mailx
有些脆弱,并且存在巨大的可移植性问题,因为有多个不兼容的mailx
实现常用。