shams Posted February 28, 2013 Share Posted February 28, 2013 (edited) 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 February 28, 2013 by shams Quote Link to comment https://forums.phpfreaks.com/topic/275039-echo-cannaot-pass-the-values-to-msmtp/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.