我想在 Debian 和 Windows 上打开 Thunderbird,并附上新电子邮件的附件。

所以我想做与这个线程相同的事情,但发布的解决方案不起作用:

Python open email client with attachment

我和 user2686223 有同样的问题。该文件不会附加到邮件中。谁能帮我这个?

也许有另一种解决方案?

编辑:这是现在的工作方式:

import os
os.system("thunderbird -compose to='[email protected]',subject='subject',body='body',attachment='/path/to/file'")

最佳答案

使用命令行参数“-compose”启动 Thunderbird。
更多关于 http://kb.mozillazine.org/Command_line_arguments_%28Thunderbird%29 的信息

关于Python:打开 Thunderbird 编写带有附加文件的新邮件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25698821/

10-12 04:19