PHP:mail()www-data

时间:2014-03-16 20:10:23

标签: php email

我使用www-data问题检查了其他主题,但没有找到解决方案。

所以我在linux(apache服务器)上使用ssmpt发送邮件。我的代码是:

$ime=$_POST['ime'];
$email=$_POST['email'];
$subject=$_POST['zadeva'];
$txt=$_POST['sporocilo'];

$to = "webpagegw2project@gmail.com";
$headers = "From: ".$name."  <".$email.">" . "\r\n" .
"Reply-To: " .$email . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to,$subject,$txt,$headers);

我的问题是&#34;姓名&#34;来自谁的电子邮件,电子邮件是好的。例如,在gmail:http://prntscr.com/30sgp5上。我的名字总是www-data,我怎么能改变这个?

0 个答案:

没有答案