0

我有一个带有“发送电子邮件”功能的 PHP 应用程序。它看起来有点像这样(隐藏个人信息):

 //SEND EMAIL
$destination = $destination;
$subject = "Issue - " . {issue_number};
$body = "Mr(s). Issuer <br/><br/>

rest of the message";

$header = 'MIME=Version: 1.0' . "\r\n";
$header .= 'Content-type: text/html; charset=iso8859-1' . "\r\n";
$header .= "To: <$destination" . "\r\n";
$header .= 'From: Issues Central <issuescentral@myisp.com>' . "\r\n";

mail($destination,$subject,$body,$header);

我的 PHP.ini 文件 (/etc/php5/apache2/php.ini) 设置如下:

仅适用于 Unix。您也可以提供参数(默认值:“sendmail -t -I”)。 http://php.net/sendmail-path sendmail_path = /usr/sbin/sendmail -t -I

我正在寻找“sendmail”配置文件,我发现它是“exim4”的别名。我有点迷路了......我应该配置 exim4 文件吗?哪一个?我应该如何配置它?

4

0 回答 0