如何通过mailx&发送邮件? subprcoess?

时间:2010-01-07 13:12:45

标签: python subprocess

我是EE,试图编写一个脚本来简化使用Python的文件检查。 出于某种原因,我们的IT不会让我访问我们的smtp服务器,并且只允许通过mailx发送邮件。 所以,我想过从Python运行mailx并发送它,就像它在我的控制台中工作一样。唉,它给出了一个例外。请参阅下面的Linux日志:

***/depot/Python-3.1.1/bin/python3.1
Python 3.1.1 (r311:74480, Dec  8 2009, 22:48:08) 
[GCC 3.3.3 (SuSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> process=subprocess.Popen('echo "This is a test\nHave a loook see\n" | mailx -s "Test Python" mymail@mycomopany.com')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/depot/Python-3.1.1/lib/python3.1/subprocess.py", line 646, in __init__
    errread, errwrite)
  File "/depot/Python-3.1.1/lib/python3.1/subprocess.py", line 1146, in _execute_child
    raise child_exception***

我是Python的新手(现在从PERL迁移)。有什么想法吗?

3 个答案:

答案 0 :(得分:6)

你可以使用smtplib

import smtplib
# email options
SERVER = "localhost"
FROM = "root@example.com"
TO = ["root"]
SUBJECT = "Alert!"
TEXT = "This message was sent with Python's smtplib."


message = """\
From: %s
To: %s
Subject: %s

%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)

server = smtplib.SMTP(SERVER)
server.set_debuglevel(3)
server.sendmail(FROM, TO, message)
server.quit()

如果你真的想使用子进程(我建议反对)

import subprocess
import sys
cmd="""echo "test" | mailx -s 'test!' root"""
p=subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
output, errors = p.communicate()
print errors,output

答案 1 :(得分:2)

您可以使用subprocess.call。像:

subprocess.call(["mailx", "-s", "\"Test Python\"", "mymail@mycomopany.com"])

详情here

答案 2 :(得分:0)

Lior Dagan的代码接近正确/正常:此方法中的错误在shell=True调用中缺少kwarg subprocess.Popen。任何实际考虑这种方法的人都应该知道subprocess文档警告:

Invoking the system shell with shell=True can be a security hazard if combined with untrusted input.

一般来说,F0RR和ghostdog74的解决方案应该是首选,因为它们更加强大和安全。