我正在开发一种餐点订购系统,该系统将通过电子邮件将所有订单发送给用户作为收据。
我已经在我的 localhost 中使用XAMPP使用了此代码,并且效果很好。
if($result){
error_reporting(0);
ini_set('display_errors', 0);
ini_set('SMTP','mail.tm.jfe-eng.co.jp');
ini_set('smtp_port',25);
$to=$email;
$subject="Your confirmation link";
$message="Your confirmation link \r\n";
$message.="Click on this link to activate your account \r\n";
$message.="http://localhost/gpst/confirmation.php?passkey=$confirm_code";
$header='From: meal@tm.jfe-eng.co.jp' . "\r\n" .
'Reply-To: meal@tm.jfe-eng.co.jp' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$sentmail = mail($to, $subject, $message, $header);
}
但是,当我尝试将其上传到Linux服务器时,无法使用该系统收到任何电子邮件。
有人可以帮助我解决此问题吗?谢谢!