标签: 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;