With the running code below msmtp send the empty email to the reciepient without any subject, From, To and message (body) :
<?php
$from = $_POST['from'];
$To = $_POST['To'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$account = $_POST['account'];
ob_start();
echo "Subject:\n".$subject."\n To:".$To."\n From:". $from."\n\n".$message;
$str = ob_get_contents();
ob_end_clean();
exec("echo $str | msmtp --account=$account -f $from $To");
?>
Didn't get all the values from the echo command, any help please?
Edited by shams, 28 February 2013 - 01:44 AM.












