如何在php中使用shell_exec命令发送邮件

时间:2016-01-11 18:26:34

标签: php linux

我正在使用以下代码发送邮件,但它通过msg“空邮件正文;希望没问题”并且邮件不发送

$body='sdfsdf';
$subject='sdfsdf';
$to='test@gmail.com';

echo $output = shell_exec("echo $body && mail -s \"$subject\" $to");
print_r ("$output"); 
die;

0 个答案:

没有答案